Skip to content

Instantly share code, notes, and snippets.

@shemul49rmc
Created October 29, 2013 12:11
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 shemul49rmc/7213521 to your computer and use it in GitHub Desktop.
Save shemul49rmc/7213521 to your computer and use it in GitHub Desktop.
Modify “Read More…” Text
/**Modify “Read More…” Text**http://iamshemul.com/?p=2395 **/
add_filter( 'excerpt_more', 'child_read_more_link' );
add_filter( 'get_the_content_more_link', 'child_read_more_link' );
add_filter( 'the_content_more_link', 'child_read_more_link' );
function child_read_more_link() {
return '&#x2026; <a class="more-link" href="' . get_permalink() . '" rel="nofollow">Continue Reading &#x2026;</a>';}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment