bloqhead
10/10/2013 - 1:59 PM

Change the excerpt length in WordPress. Put this in your theme's functions.php file (or wherever you store custom functions).

Change the excerpt length in WordPress. Put this in your theme's functions.php file (or wherever you store custom functions).

<?php
function new_excerpt_length( $length ) {
    return 200;
}
add_filter( 'excerpt_length', 'new_excerpt_length' );
?>