Change Excerpt Length
function custom_excerpt_length( $length ) {
return 20;
}
add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
After that i also tried to edit the excerpt length in theme-option.php file in muffin-options but it also shows no effect. So please let me know how can i change the excerpt length of my posts.
Comments
function mfn_excerpt_length( $length ) {26 means that inside excerpt will be 26 words so you can replace this value with any like you want. But what is much better way is setup own excerpt for each post. While you create/edit post, under Post options you have field called "Excerpt" and inside you can but any excerpt you want and then this value will be used as default. If you don`t have this field, then you must click on "Screen options" button in right top corner and check "Excerpt" to show.return 26;
}
add_filter( 'excerpt_length', 'mfn_excerpt_length', 999 );
Hope this will help you a lot.