Guest User

Untitled

a guest
Apr 22nd, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. function read_more($limit){
  2. $post_content = explode(" ", get_the_content());
  3.  
  4. $less_content = array_slice($post_content, 0, $limit);
  5.  
  6. echo implode("", $less_content);
  7. }
Add Comment
Please, Sign In to add comment