You must be logged in to post
Search Forums:


 






Wildcard Usage:
*    matches any number of characters
%    matches exactly one character

Archive – limit the excerpt?

UserPost

1:42 am
September 10, 2009


webvivre

Member

posts 5

1

Is there anyway to reduce the amount text shown for each post in the archive listings?

7:32 am
September 12, 2009


Ryan

Admin

posts 1547

2

There are some plugins that give you more control over excerpts, or you can add this code to your functions.php file:

function new_excerpt_length($length) {	return 20;}add_filter('excerpt_length', 'new_excerpt_length');

See the Codex here: http://codex.wordpress.org/Tem.....he_excerpt