Skip to content

Instantly share code, notes, and snippets.

@douglasanro
Created April 16, 2017 22:19
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 douglasanro/1444212ae53d0124351dec42e030a20d to your computer and use it in GitHub Desktop.
Save douglasanro/1444212ae53d0124351dec42e030a20d to your computer and use it in GitHub Desktop.
Change WordPress more excerpt
<?php
/* ----------------------------------------------------------------------------
* Change more excerpt
* ------------------------------------------------------------------------- */
function custom_more_excerpt( $more ) {
return '...';
}
add_filter( 'excerpt_more', 'custom_more_excerpt' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment