Skip to content

Instantly share code, notes, and snippets.

@gasatrya
Created June 9, 2015 14:46
Show Gist options
  • Save gasatrya/b5f116ca6c985034dc3b to your computer and use it in GitHub Desktop.
Save gasatrya/b5f116ca6c985034dc3b to your computer and use it in GitHub Desktop.
Change the WordPress excerpt more string
<?php
/**
* Change the excerpt more string.
*
* @since 1.0.0
* @param string $more
* @return string
*/
function prefix_excerpt_more( $more ) {
return '&hellip;';
}
add_filter( 'excerpt_more', 'prefix_excerpt_more' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment