Skip to content

Instantly share code, notes, and snippets.

@Asikur22
Last active May 18, 2019 20:55
Show Gist options
  • Select an option

  • Save Asikur22/939886d5947edf6521ff2ab95aff2efb to your computer and use it in GitHub Desktop.

Select an option

Save Asikur22/939886d5947edf6521ff2ab95aff2efb to your computer and use it in GitHub Desktop.
Modify Excerpt
/*
* Limit Excerpt Length
*/
function custom_excerpt_length($length) {
return 15;
}
add_filter('excerpt_length', 'custom_excerpt_length', 999);
/*
* Remove Wordpress More tag.
*/
function custom_excerpt_more($more) {
return '';
}
add_filter('excerpt_more', 'custom_excerpt_more');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment