• Resolved megacles

    (@megacles)


    Hi,

    I am trying to figure out how to not use excerpts on blog posts. That “continue reading” button always appears on every post, and I just want the whole post to be shown.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Michael

    (@alchymyth)

    edit content.php (preferrable in a child theme) and change this section:

    <?php if ( is_single() ) : ?>
    
    		<?php get_template_part( 'templates/parts/loop/post', 'content' ); ?>
    
    	<?php else : ?>
    
    		<?php get_template_part( 'templates/parts/loop/post', 'excerpt' ); ?>
    
    	<?php endif; ?>

    to:

    		<?php get_template_part( 'templates/parts/loop/post', 'content' ); ?>
    

    that would show the full post in the index page and archive pages, and search results… (untested)

    Thread Starter megacles

    (@megacles)

    Thank you, that worked!

    Thanks! I had the same issue and this worked great for me as well.

    How do I find “edit content.php”
    I’m trying to turn off the “continue reading” and would like for my whole post to show.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Remove “Continue Reading” and excerpts.’ is closed to new replies.