Set WordPress Post Excerpt Length for php

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    ?>

&amp;nbsp;

&amp;nbsp;

Leave a Reply

Your email address will not be published. Required fields are marked *

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>