• Resolved nils0815

    (@nils0815)


    Hello!
    First of all: Great plugin!

    My question: Is it possible to change the length of the excerpts?

    As it said an excerpt of the comment is limited to 20 words. I would prefer only 10 words. How can I change this?

    Thank you!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi,

    Sorry for slow reply. Try adding this to your theme or child theme’s functions.php file:

    
    function xyz_set_comment_excerpt_length( $length ) {
        return 10;
    }
    add_filter( 'comment_excerpt_length', 'xyz_set_comment_excerpt_length' );
    

    This will change it in the default WordPress comments widget too.

    Hope that helps,
    Andy

    Thread Starter nils0815

    (@nils0815)

    Hi,

    that works great! Thank you very much!

    No problem ??

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