webworthydesign
9/26/2015 - 5:33 AM

Custom Excerpt Read More Link

Custom Excerpt Read More Link

// ---------- CUSTOM EXCERPT READ MORE LINK
function new_excerpt_more( $more ) {
	return '... <a class="read-more" href="' . get_permalink( get_the_ID() ) . '">' . __( 'Read More', 'your-text-domain' ) . '</a>';
}
add_filter( 'excerpt_more', 'new_excerpt_more' );