I am looking for aplugin that allows me to have a custom tekst on the <!-more->-tag. Not just change it, but have the possibility to set the text for each post.
Anyone know of a plugin that allows me to do that?
I am looking for aplugin that allows me to have a custom tekst on the <!-more->-tag. Not just change it, but have the possibility to set the text for each post.
Anyone know of a plugin that allows me to do that?
Well if you don't find a plugin you could use this in your theme's apppropriate template file:
<?php
$moretext = get_post_meta($post->ID, 'more_text', true);
if ( ! $moretext ) {
$moretext = 'Read the rest of this entry »';
}
the_content($moretext);
?>
Just create a custom field called more_text on the posts where you want a specific "more". If there is no custom field call "more_text" then the code will cause 'Read the rest of this entry »'; to be used.
You must log in to post.