Skip to content

Instantly share code, notes, and snippets.

@ryantownley
Last active May 19, 2016 03:11
Show Gist options
  • Save ryantownley/26c1b810701396c4a506 to your computer and use it in GitHub Desktop.
Save ryantownley/26c1b810701396c4a506 to your computer and use it in GitHub Desktop.
Customize read more link text
//* Customize read more text
add_filter( 'excerpt_more', 'genesis_read_more_link' );
add_filter( 'get_the_content_more_link', 'genesis_read_more_link' );
add_filter( 'the_content_more_link', 'genesis_read_more_link' );
function genesis_read_more_link() {
return '<a class="more-link" href="' . get_permalink() . '">Continue Reading</a>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment