Skip to content

Instantly share code, notes, and snippets.

@iiiBird
Last active August 29, 2015 14:16
Show Gist options
  • Save iiiBird/a43d6945c967941f4e35 to your computer and use it in GitHub Desktop.
Save iiiBird/a43d6945c967941f4e35 to your computer and use it in GitHub Desktop.
Длина короткой новости
<?php
function custom_excerpt_length( $length ) {
return 20;
}
add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment