Skip to content

Instantly share code, notes, and snippets.

@TanvirAmi
Created November 14, 2015 08:56
Show Gist options
  • Save TanvirAmi/d0f6a8c1a5bea4232d57 to your computer and use it in GitHub Desktop.
Save TanvirAmi/d0f6a8c1a5bea4232d57 to your computer and use it in GitHub Desktop.
Change the "more" text of wordpress excerpt.
<?php
/**
* Change the excerpt more string.
* @param string $more
* @return string
*/
function custom_excerpt_more( $more ) {
return '&hellip;';
}
add_filter( 'excerpt_more', 'custom_excerpt_more' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment