Hello,
I am trying to display automatic post excerpts on the main index with a link leading to the entire post. When I use <?php the_excerpt(); ?> <span class="custom_read_more"><a href="<?php the_permalink(); ?>">Read Entry → </a></span> it displays two "read more" links on posts that have <!--more--> in the content area.
What I'm looking for is something like:
if: <?php the_content('Read More'); ?>
then: <?php the_content(); ?>
else: <?php the_excerpt(); ?> <span class="custom_read_more"><a href="<?php the_permalink(); ?>">Read Entry → </a></span>
I know that's not actual code, just needed to illustrate what I'm looking for.
If this is possible, please help. Thanks in advance!