• Resolved unet

    (@unet)


    Hello. I created a blog post, and on the blog post page, the excerpt is too big. Is there a way to decrease the size of the excerpt?

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi @unet

    Thanks for reaching out to us.

    Astra’s free version doesn’t include a built-in setting to control the word count of the excerpt — that’s a Pro feature.

    However, you can adjust it yourself using the standard WordPress snippet referred to below by adding the code to your child theme’s functions.php file.

    function my_custom_excerpt_length( $length ) {
        return 20; // change 20 to however many words you'd like
    }
    add_filter( 'excerpt_length', 'my_custom_excerpt_length', 999 );

    With Regards
    Humayon

    Thread Starter unet

    (@unet)

    Thank you

    Hello @unet

    You’re welcome.

    Have a good day 🙂

    With Regards
    Humayon

Viewing 3 replies - 1 through 3 (of 3 total)

You must be logged in to reply to this topic.