Simple little WordPress snippet that sets the length of your WordPress post excerpt so it will fit more in-line with the theme you are currently using. Just set the value below (currently 30), and it will update it so that your excerpt is that many characters.
1 <?php
2 function excerptLength( $length )
3 {
4 return 30;
5 }
6
7 add_filter( 'excerpt_length', 'excerptLength' );
8 ?>
&nbsp;
&nbsp;
2 function excerptLength( $length )
3 {
4 return 30;
5 }
6
7 add_filter( 'excerpt_length', 'excerptLength' );
8 ?>
&nbsp;
&nbsp;