• I’m using the Flexibility 3 theme and in the index.php file I repaced

    <?php the_content("<p>_('Read rest of the post')</p>"; ?>

    with:

    <?php the_excerpt(); ?>
    <p><a href="<?php echo get_permalink(); ?>">Read more...</a></p>

    this gives me the excerpt and the link. However, when I click on the Read more… link, I don’t get the full post. All I get is the excerpt with all the information given after the post (like the comment box)

    Why isn’t this displaying the full post?

Viewing 1 replies (of 1 total)
  • As a general rule, non-WordPress.org themes aren’t supported in these forums.

    But as a theme-agnostic solution, you might try this:

    <p><a href="<?php echo get_permalink( get_the_ID() ); ?>">Read more...</a></p>
Viewing 1 replies (of 1 total)
  • The topic ‘Can't get Read more… link towork from excerpt’ is closed to new replies.