Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created October 30, 2011 04:44
Show Gist options
  • Save billerickson/1325502 to your computer and use it in GitHub Desktop.
Save billerickson/1325502 to your computer and use it in GitHub Desktop.
Change Excerpt More text
<?php
/**
* Change Excerpt More text
* @author Bill Erickson
* @link http://www.billerickson.net/code/change-excerpt-more-text
*
* @param string original more text
* @return string modified more text
*/
function be_excerpt_more( $more ) {
return '...';
}
add_filter( 'excerpt_more', 'be_excerpt_more' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment