Skip to content

Instantly share code, notes, and snippets.

@mihdan
Forked from kovshenin/excerpt-length.php
Last active January 14, 2016 09:07
Show Gist options
  • Save mihdan/44db461cacaf548f3ba8 to your computer and use it in GitHub Desktop.
Save mihdan/44db461cacaf548f3ba8 to your computer and use it in GitHub Desktop.
Задать количество СЛОВ в цитате WordPress
<?php
/**
* Plugin Name: Custom Excerpt Length
*/
function custom_excerpt_length( $length ) {
return 10;
}
add_filter( 'excerpt_length', 'custom_excerpt_length' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment