• Resolved buddytruk

    (@buddytruk)


    How do you add a ‘read more’ link to the bottom of each post so that users do not have to solely click on the article title to read the full post?

Viewing 2 replies - 1 through 2 (of 2 total)
  • In content.php you can add something like:

    <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">Read more</a>

    jessy

    (@jessy-marco)

    1, Probably this way is more common. Write to the loop:

    <?php the_content('Read more...'); ?>

    2, Write the quicktag <!--more--> while in editing workflow. (In text editor.)

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Add 'read more' to bottom of post preview’ is closed to new replies.