[Support request] Excerpt Word Count

Home Forums Support [Support request] Excerpt Word Count

Home Forums Support Excerpt Word Count

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1354459
    Christopher

    Is there any way that I can increase the word count for the excerpt for the featured post? I would like to say a little bit more before the read more button.

    #1354540
    Tom
    Lead Developer
    Lead Developer

    Hi there,

    Give this a shot:

    add_filter( 'excerpt_length', function( $length ) {
        if ( in_array( 'featured-column', get_post_class() ) ) {
            return 100;
        }
    
        return $excerpt;
    }, 100 );

    Let me know 🙂

    #1355177
    Christopher

    Where do I put that?

    #1355187
    David
    Staff
    Customer Support

    That code is PHP.
    This doc explains:

    https://docs.generatepress.com/article/adding-php/

    #1355211
    Christopher

    Ok thank you!

    #1355229
    David
    Staff
    Customer Support

    You’re welcome

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.