Skip to content

Instantly share code, notes, and snippets.

@seredniy
Created May 20, 2016 12:24
Show Gist options
  • Save seredniy/12f1ee352262aea95f6d301ef993e174 to your computer and use it in GitHub Desktop.
Save seredniy/12f1ee352262aea95f6d301ef993e174 to your computer and use it in GitHub Desktop.
Длинна Excerpt и удаление [...]
add_filter('excerpt_more', function($more) {
return '...';
});
function new_excerpt_length($length) {
return 15;
}
add_filter('excerpt_length', 'new_excerpt_length');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment