Advertisement
michaellevelup

Limit title on Single posts

Aug 9th, 2022
568
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. function king_limit_title($title) {
  2.  
  3.     if(is_singular('post')) {
  4.    
  5.         // limit to 5 words
  6.         $max_title = 5;
  7.  
  8.         return wp_trim_words( $title, $max_title, '' );
  9.  
  10.     }
  11.     else
  12.         return $title;
  13. }
  14.  
  15. add_filter('the_title', 'king_limit_title');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement