Skip to content

Instantly share code, notes, and snippets.

@thadallender
Created January 21, 2014 04:10
Show Gist options
  • Save thadallender/8534326 to your computer and use it in GitHub Desktop.
Save thadallender/8534326 to your computer and use it in GitHub Desktop.
Use this to change the read more text in WordPress. Change … to anything you want. Add this snippet to your theme's functions.php file.
function new_excerpt_more( $more ) {
return '…';
}
add_filter( 'excerpt_more', 'new_excerpt_more' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment