Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1053863

    Hi
    How can I add more words to the excerpt for the blogpost on my main page? I have used the “Blog posts” option to get them displayed on the front page but I think the excerpt length is way to short.

    http://www.rideferier.no

    Thanks

    Elisabeth

    #1054032

    Hey Elisabeth,

    Can you try to add this code in functions.php:

    function av_custom_excerpt_length( $length ) {
        return 80;
    }
    add_filter( 'excerpt_length', 'av_custom_excerpt_length', 999 );

    Just replace 80 (words) with any number, just increase or decrease it as you like.

    Best regards,
    Nikko

    #1054937

    Dear support how can i set lenght of excerpt of Blog list visualiztion?
    I used this class of list “bloglist-excerpt”.

    Thanks

    #1055502

    Hi sitebysite,

    I think your using Blog Posts just a different translation.
    Can you try the code I gave? that should adjust the length of the excerpt.

    Best regards,
    Nikko

    #1055561

    It works.
    Thanks so much

    #1055911

    Hi sitebysite,

    Glad that we could help :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    #1093316

    Hi
    I am not getting this function to work.
    Is this the function to insert?:
    }
    function av_custom_excerpt_length( $length ) {
    return 80;
    }
    add_filter( ‘excerpt_length’, ‘av_custom_excerpt_length’, 999 );

    I am getting various error messages (Unexpected tokens)

    Regards
    Elisabeth

    #1093537

    Hi Elisabeth,

    It looks like you have an extra curly bracket on top of your code, please try this instead:

    function av_custom_excerpt_length( $length ) {
    return 80;
    }
    add_filter( 'excerpt_length', 'av_custom_excerpt_length', 999 );

    Best regards,
    Rikard

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