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.