johannesress
1/27/2014 - 12:34 PM

Change text and link at the end of the excerpt

Change text and link at the end of the excerpt

//create a permalink after the excerpt
function wpfme_replace_excerpt($content) {
	return str_replace('[...]',
		'<a class="readmore" href="'. get_permalink() .'">Continue Reading</a>',
		$content
	);
}
add_filter('the_excerpt', 'wpfme_replace_excerpt');