Display article as an excerpt
-
I’m using a Bakerville 2 theme and when posting the articles, it displays the whole article. Although inserted the code for ‘more’ in some of the articles. I want the overall site to display only 100 words of summary and then the ‘read more’ option. Kindly let me know any other option/code except changing each article manually by inserting the read more option. Thanks a lot.
P.S: I have also changed the reading setting to summary instead of full text.
My site: https://www.universityacademia.com
`<?php while ( have_posts() ) : the_post();
get_template_part( ‘content’, get_post_format() );
endwhile; ?>
</div> <!– /posts –>
<?php the_posts_navigation(); ?>
<?php else :
get_template_part( ‘content’, ‘none’ );
?>
<?php endif; ?></main> <!– /content –>
</div> <!– /wrapper –><?php get_footer(); ?>
- The topic ‘Display article as an excerpt’ is closed to new replies.