function my_excerpt_length($length) { return 20; } add_filter('excerpt_length', 'my_excerpt_length'); function new_excerpt_more($more) { return '...'; } add_filter('excerpt_more', 'new_excerpt_more');

function my_excerpt_length($length) { return 20; } add_filter('excerpt_length', 'my_excerpt_length'); function new_excerpt_more($more) { return '...'; } add_filter('excerpt_more', 'new_excerpt_more');
Leave a Reply
You must be logged in to post a comment.