• rocky2889

    (@rocky2889)


    What file I need to change for the archives […] to something like this “Read the rest of this entry » ” with linkable to full post. Thanks

Viewing 1 replies (of 1 total)
  • Kafkaesqui

    (@kafkaesqui)

    Assuming your archives (typically archive.php in a theme) is listing the content of posts using <?php the_excerpt(); ?>, I can suggest two options:

    1. Swap <?php the_excerpt(); ?> for:

    <?php the_content(); ?>

    and make sure to use the ‘more’ Quicktag in your posts.

    2. Add a link after <?php the_excerpt(); ?> to the post:

    <?php the_excerpt(); ?>
    <a href="<?php echo get_permalink(); ?>">Read the rest of this entry &raquo;</a>

Viewing 1 replies (of 1 total)
  • The topic ‘Change the read more […]’ is closed to new replies.