WordPress auto more tag text

1.50

Auto sets the more tag to post title instead of the boring “Read more / Continue reading”. The auto text is customizable using mp_auto_more_more_link_readmore filter.

Description

Get rid of that boring default “Read more” tag and show something that triggers your readers to actually continue to read your post!

Buy once, use on unlimited sites!

Coding by: MijnPress.nl Twitter profile More plugins

Filters

How to I customize the default text?

add_filter( ‘mp_auto_more_more_link_readmore’, ‘example_mp_auto_more_more_link_readmore’);
/**
* @param string $text Default text [ __(‘Continue reading’) + post:title ]
* @param string $title post:title
* @param string $title post:ID
*/
function example_mp_auto_more_more_link_readmore($text, $title, $postID)
{
// Customize here
return $text;
}

Reviews

There are no reviews yet.

Be the first to review “WordPress auto more tag text”

Your email address will not be published. Required fields are marked *