Advertisement
Guest User

Untitled

a guest
Mar 30th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. // toss this in your functions.php (or elsewhere)
  2.  
  3. function get_shorty($count = 15){
  4. global $post;
  5. $str = get_the_content();
  6. $str = implode(' ', array_slice(explode(' ', $str), 0, $count));
  7. return $str.'...';
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement