September 2nd, 2010 by

Changing excerpt length and “read more” link is a pretty often request. Here are the function that will allow you to change both of them. Add the code to the functions.php file.

     // Change excerpt length
    function custom_excerpt_length($length) {
    return 100;
    }
    add_filter('excerpt_length', 'custom_excerpt_length');

    // Change excerpt more
    function custom_excerpt_more($more) {
    return '…';
    }
    add_filter('excerpt_more', 'custom_excerpt_more');

One Response to “Custom excerpt length and more tag”

  1. Sorry for my bad english. Thank you so much for your good post. Your post helped me in my college assignment, If you can provide me more details please email me.

Leave a Reply