• Hello
    I am using this code in function.php to limit the contents to 90 words

    <?php
    function new_excerpt_length($length) {
    	return 90;
    }
    add_filter('excerpt_length', 'new_excerpt_length');
    ?>
    <?php
    function new_excerpt_more($more) {
    	return '...';
    }
    add_filter('excerpt_more', 'new_excerpt_more');
    ?>

    it works perfectly , however, it strip the image,
    is there any way that i can include the image as well ?

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘word limit including image’ is closed to new replies.