Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created February 10, 2014 16:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save billerickson/8919278 to your computer and use it in GitHub Desktop.
Save billerickson/8919278 to your computer and use it in GitHub Desktop.
/**
* Excerpt More Link
*
*/
function be_excerpt_more( $more ) {
return ' &hellip; <a href="' . get_permalink() . '">Read More</a>';
}
add_filter( 'excerpt_more', 'be_excerpt_more', 99 );
add_filter( 'get_the_content_more_link', 'be_excerpt_more', 99 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment