Site logo

[Resolved] Having more excerpt characters in featured box than the other box ?

Home Forums Support [Resolved] Having more excerpt characters in featured box than the other box ?

Home Forums Support Having more excerpt characters in featured box than the other box ?

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #2489108
    jmarc

    Hello
    I wonder if it’s possible to have for example :20 characters in the featured box in frontpage and 10 for the others box…
    I give you my URL in private so you can see what I want.
    Thank you for your help
    MArc

    #2489179
    David
    Staff
    Customer Support

    Hi there,

    try adding this PHP Snippet to your site:

    add_filter( 'excerpt_length', 'tu_featured_excerpt_length', 50 );
    function tu_featured_excerpt_length( $length ) {
        $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
        global $wp_query;
    
        if ( 1 == $paged && 0 == $wp_query->current_post ) {
            return 100; // First post
        }
    
        return $length;
    }

    How to add PHP: https://docs.generatepress.com/article/adding-php/

    #2489202
    jmarc

    David : you should be “President of the United States” !
    Thank’s a lot…
    Marc

    #2489760
    David
    Staff
    Customer Support

    Haha… not sure if thats a compliment, but ill take it as one 🙂

    Glad to be of help

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