Hello,
Thank you for contacting Rank Math and bringing your concern to our attention.
To remove meta description tag from specific posts and products, you may try adding the following filter to see if that works for you.
add_filter( 'rank_math/frontend/description', function( $description ) {
global $post;
$remove_ids = array(1,2,3); // Replace 1,2,3 with your post and product ID(s)
if(!empty($post->ID) && is_numeric($post->ID) && in_array((int)$post->ID, $remove_ids)){
unset($description);
}
return $description;
});
Here’s how you can add filter/hook to your WordPress site:
https://rankmath.com/kb/wordpress-hooks-actions-filters/
Let us know how it goes. Looking forward to helping you.
Thank you.
Great, it works perfectly. Thanks!
Hello,
We are super happy that this resolved your issue. If you have any other questions in the future, know that we are here to help you.
If you don’t mind me asking, could you please leave us a review (if you haven’t already) on https://wordpress.org/support/plugin/seo-by-rank-math/reviews/#new-post about your overall experience with Rank Math? We appreciate your time and patience.
If you do have another question in the future, please feel free to create a new forum topic, and it will be our pleasure to assist you again.
Thank you.