How do you Remove a Read More Button?
-
Hello guy’s, well here is my dilemma, on my blog page i am trying to remove the “Read More” button that comes on standard no matter how long the post with the downloaded theme that i am creating my website around.
Here is my index.php
<?php get_header(); ?> <!-- Content --> <section id="content"> <?php if( have_posts() ): ?> <?php /* Start the Loop */ ?> <?php while ( have_posts() ) : the_post(); ?> <?php get_template_part( 'content', get_post_format() ); ?> <?php endwhile; ?> <?php endif ?> <!-- Pagination --> <?php next_pagination(); ?> <!-- End Pagination --> <div id="top"> <a href="#top" title="Back To Top">Top ↑</a> </div> </section> <!-- End Content --> <?php get_footer(); ?>
[Please use the code buttons when posting code here]
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘How do you Remove a Read More Button?’ is closed to new replies.