• How do I reposition the more link? For example, I want to suffix the more link to postmeta within the loop, but it seems that the more link cannot be separated from the_content().

Viewing 2 replies - 1 through 2 (of 2 total)
  • You can give it an empty parameter for the_content, like this:

    the_content('')

    So it does not display the link. Then in your meta area, add this:

    <a href="<?php echo get_permalink(); ?>">
    <?php the_title(); ?>
    </a>
    Thread Starter fireundubh

    (@fireundubh)

    I think the problem with that solution is that the permalink is always displayed regardless of whether there is more to be read.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Repositioning the more link?’ is closed to new replies.