Skip to content

Instantly share code, notes, and snippets.

@WebEndevSnippets
Created November 1, 2012 15:56
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 WebEndevSnippets/3994538 to your computer and use it in GitHub Desktop.
Save WebEndevSnippets/3994538 to your computer and use it in GitHub Desktop.
WordPress: Customize Read More on Content Limit
add_filter( 'get_the_content_more_link', 'webendev_content_more_link' );
/**
* Customize Read More on Content Limit
*
*/
function webendev_content_more_link() {
return '<a class="more-link" href="' . get_permalink() . '">[More &#x2026;]</a>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment