Advertisement
arie_cristianD

post subtitle restrictions

Jul 2nd, 2024
861
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | None | 0 0
  1. add_filter( 'jnews_single_subtitle', 'subtitle_restrictions' );
  2.  
  3.  
  4. function subtitle_restrictions( $subtitle ) {
  5.     $subtitle = wp_trim_words( $subtitle, 20, '...' );
  6.     return $subtitle;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement