Guest User

Untitled

a guest
May 27th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. function custom_single_product_summary(){
  2. $maxWords = 50; // Change this to your preferences
  3. $description = strip_tags(get_the_content()); // Remove HTML to get the plain text
  4. $words = explode(' ', $description);
  5. $trimmedWords = array_slice($words, 0, $maxWords);
  6. $trimmedText = join(' ', $trimmedWords);
  7.  
  8. if(strlen($trimmedText) < strlen($description)){
  9. $trimmedText .= ' &mdash; <a href="' . get_permalink() . '">Read More</a>';
  10. }
  11.  
  12. echo $trimmedText;
  13. }
Add Comment
Please, Sign In to add comment