Advertisement
jaideep06

Fetch and Trim description

Jul 28th, 2021
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 KB | None | 0 0
  1. add_filter( 'rank_math/frontend/description', function( $description ) {
  2.     global $post;
  3.     $description = get_the_title($post->id).' - '.$_SERVER['SERVER_NAME'];
  4.     $description = substr($description, 0, 180);
  5.     return $description;
  6. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement