Skip to content

Instantly share code, notes, and snippets.

@coreyweb
Created March 25, 2012 14:04
Show Gist options
  • Save coreyweb/2194903 to your computer and use it in GitHub Desktop.
Save coreyweb/2194903 to your computer and use it in GitHub Desktop.
WordPress: Remove [...] from the_excerpt
<?php
// put this code in the theme's functions.php file
function trim_excerpt($text) {
return rtrim($text,'[...]');
}
add_filter('get_the_excerpt', 'trim_excerpt')
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment