if ( ! function_exists( ‘themesharbor_more_link_custom_excerpt’ ) ) :
/**
* Prints a More Link in the custom excerpt.
*/
function themesharbor_more_link_custom_excerpt( $excerpt ) {
if ( has_excerpt( get_the_ID() ) ) {
$excerpt .= ‘

‘;
}

return $excerpt;
}
add_filter( ‘the_excerpt’, ‘themesharbor_more_link_custom_excerpt’ );
endif;

read more