Customize "[click to continue…]" Text

This document is deprecated! The information on this page refers to a Thesis version that is now obsolete. Please visit the Thesis Docs for current documentation.

Same Text for All Posts

Navigate to Design Options, then look under Display Options > Posts and edit the text in the “clickthrough text” field (under “Read More” link).

IMPORTANT: The text you designate for your “Read More” link is only utilized when you have 1) chosen to display full post content on the page being viewed and 2) used the WordPress “more” quicktag in the post being displayed.

Custom Text for Each Post

When you insert the <!--more--> quicktag into your post, you can indicate the custom text you wish to use for its link:

<--more Your custom text here-->

Add a “Read More” Link to Post Excerpts on Archives

Place this code in custom_functions.php:

function archive_read_more() {
    if (is_archive()) { ?>
<p><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>">Read the full article...</a></p>
<?php }
}

add_action('thesis_hook_after_post', 'archive_read_more');

Related Answers: