How Can I Disable Open Graph Meta?

#663180
  • Resolved Ashwin Singh
    Rank Math free

    Hey,

    I would like to disable Open Graph Meta and Twitter Card. Please Help.

Viewing 1 replies (of 1 total)
  • Hello,

    Thank you for contacting Rank Math and bringing your concern to our attention.

    Apologies for the delay as we currently have a high volume of tickets here in our support forums.

    If you want to remove the meta and Opengraph meta tags from Rank Math, you can make use of this filter (affects all URLs):

    /**
     * Hook to remove og:tags
     */
    add_action( 'rank_math/head', function() {
    	remove_all_actions( 'rank_math/opengraph/facebook' );
    	remove_all_actions( 'rank_math/opengraph/twitter' );
    }, 1);

    The filter should be added to your active theme’s functions.php file. Here’s another way to apply the filter using the rankmath.php file:
    https://rankmath.com/kb/filters-hooks-api-developer/#adding-filters-and-hooks-in-rank-math-php

    You can further customize the filter by applying conditional statements to affect specific post type or individually.

    Hope that helps.

    Thank you.

    Hello,

    Since we did not hear back from you for 15 days, we are assuming that you found the solution. We are closing this support ticket.

    If you still need assistance or any other help, please feel free to open a new support ticket, and we will be more than happy to assist.

    Thank you.

Viewing 1 replies (of 1 total)

The ticket ‘How Can I Disable Open Graph Meta?’ is closed to new replies.