• msteidl

    (@msteidl)


    I would like to change the lenght of excerpts on my website from 30 to 60 words.

    I already tried the following code in functions.php:

    function mytheme_custom_excerpt_length( $length ) {
        return 60;
    }
    add_filter( 'excerpt_length', 'mytheme_custom_excerpt_length', 999 );

    Unfortunately with no given effect.

    What do I need to do to get length of excpert changed?

    Regards
    Michaela

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

  • The topic ‘Want to change length of excerpt’ is closed to new replies.