Skip to content

Instantly share code, notes, and snippets.

@sambody
Forked from billerickson/gist:1325502
Created June 26, 2013 18:48
Show Gist options
  • Save sambody/5870225 to your computer and use it in GitHub Desktop.
Save sambody/5870225 to your computer and use it in GitHub Desktop.
WP: 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