How to modify excerpt’s length

Difficulty Difficulty Difficulty Posted Posted by Fulippo in Tutorials     Comments 1 comment
Feb
27

Fast and easy: to modify excerpt lenght you just have to put the following lines inside the functions.php file inside your theme:

1
2
3
4
5
    function modify_excerpt_length(){
        return 20; // Modify this
    }
 
    add_filter('excerpt_length','modify_excerpt_length');

Reference:
Codex: Add Filter

1 Comment to “How to modify excerpt’s length”

  • It works! Thank you man

Post comment