Viewing 1 replies (of 1 total)
  • Plugin Support Rank Math Support

    (@rankmathsupport)

    Hello @atta-ur-rehman,

    Thank you for contacting Rank Math support.

    You can add the following hook to your WordPress site in order to remove all OpenGraph tags (og:tags) added by Rank Math on your site:

    /**
    * 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' );
    });

    Please follow the URL below to learn how you can add filters/hooks to your site:
    https://rankmath.com/kb/wordpress-hooks-actions-filters/

    Hope that helps.

Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.