Viewing 3 replies - 1 through 3 (of 3 total)
  • In your theme’s functions.php file add this:

    function custom_excerpt_length( $length ) {
        return 40;
    }
    add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );

    Changing return value changes the excerpt length.
    Please let me know if this answers your question. Thank you.l

    Thread Starter DanSte

    (@danste)

    public_html/wp-content/themes/plum/functions.php

    This has no effect for me. Have you tested that?

    Theme Author InkHive

    (@inkhive)

    Hello @danste

    Can you please share the URL of your site so that we can take a look at the site and resolve it for you.

    Divjot

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Edit the excerpt length?’ is closed to new replies.