removing “Read More” link and showing whole post
-
on the page here (https://bankingwiththebeard.com/wordpress/?cat=9), i want the whole post to show but right now it just shows the
[...]
link to read more after the excerpt.I found the following code in the archive.php file
<?php while (have_posts()) : the_post(); ?> <h3><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h3> <div class="contenttext"> <?php the_excerpt('<p>Read more »</p>'); ?> </div>
and i though that changing
<?php the_excerpt('<p>Read more »</p>'); ?>
to say<?php the_content(); ?>
would do the trick but it did not.please advise how i get the whole post to show. thanks.
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘removing “Read More” link and showing whole post’ is closed to new replies.