Forums

word limit including image (2 posts)

  1. anewuser
    Member
    Posted 1 year ago #

    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 ?

  2. doc4
    Member
    Posted 1 year ago #

    anewuser,

    That is a result of using the excerpt. Have you tried the Limit Post plugin: http://www.doc4design.com/plugins/limit-post/. You don't need to use the excerpt at all simply activate the plugin and add a bit of code to the loop.

Topic Closed

This topic has been closed to new replies.

About this Topic