Advertisement
jaideep06

Category desc

Mar 12th, 2025
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.18 KB | None | 0 0
  1. add_filter( 'rank_math/frontend/description', function( $description ) {
  2.     if(is_product_category()) {
  3.         $description = substr($description, 0, 160);
  4.     }
  5.     return $description;
  6. });
  7.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement