Advertisement
kobial8

Limit Excerpt Words

Apr 7th, 2015
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.14 KB | None | 0 0
  1. //Just put the code in functions.php
  2.  
  3. function new_excerpt_length($length) {
  4.   return 15;
  5. }
  6. add_filter('excerpt_length', 'new_excerpt_length');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement