How to modify excerpt’s length
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”
Post comment
Recent Comments
- Michael Shearer on How to modify users contact info using a simple function
- fulippo on First steps with WordPress: quick installation guide
- gualetar on First steps with WordPress: quick installation guide
- WP Themes on First steps with WordPress: quick installation guide
- Kicker on First steps with WordPress: quick installation guide


Posted by Fulippo in

CarlBio says:
It works! Thank you man