neilgee
4/30/2014 - 9:11 AM

Force Read More Link on Excerpt Wordpress

Force Read More Link on Excerpt Wordpress

<?php
//Force the read more link on an excerpt regardless of the excerpt length

//Read More Button For Excerpt
function themprefix_excerpt_read_more_link($output) {
	global $post;
	return $output . ' <a href="' . get_permalink($post->ID) . '" class="more-link" title="Read More">Read More</a>';
}
add_filter( 'the_excerpt', 'themprefix_excerpt_read_more_link' );