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