Skip to content

Instantly share code, notes, and snippets.

@wpspeak
Last active April 16, 2019 14:18
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wpspeak/6653189 to your computer and use it in GitHub Desktop.
Save wpspeak/6653189 to your computer and use it in GitHub Desktop.
Remove [...] from excerpts
<?php
//* Remove [...] from WordPress excerpts
function afn_customize_excerpt_more( $more ) {
return ' ';
}
add_filter('excerpt_more', 'afn_customize_excerpt_more');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment