Newbie here. Could anyone share how to add a custom continue reading link on the homepage. Continue Reading in 'Category' and just a Continue Reading link on interior category pages?
Much Appreciation for any guidance!
Newbie here. Could anyone share how to add a custom continue reading link on the homepage. Continue Reading in 'Category' and just a Continue Reading link on interior category pages?
Much Appreciation for any guidance!
Hi,
You can filter the "Read More" text in Thematic this way:
function kwight_change_more_text($content) {
$content = __('Keep on reading...','thematic');
return $content;
}
add_filter('more_text', 'kwight_change_more_text');
You can add conditionals such as is_home() and is_category('my_category') to the above function to change it on a page-to-page basis:
This topic has been closed to new replies.