Remove meta description from specific page and product page

#494397
Viewing 3 replies - 1 through 3 (of 3 total)
  • 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.

    Marta
    Rank Math free

    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.

Viewing 3 replies - 1 through 3 (of 3 total)

The ticket ‘Remove meta description from specific page and product page’ is closed to new replies.