Rank Math kullanıyorsanız, function dosyanıza ekleyin:
add_action( 'rank_math/head', function() {
remove_all_actions( 'rank_math/opengraph/facebook' );
remove_all_actions( 'rank_math/opengraph/twitter' );
});Yoast SEO kullanıyorsanız:
add_filter('wpseo_opengraph_url' , '__return_false' );
add_filter('wpseo_opengraph_desc', '__return_false' );
add_filter('wpseo_opengraph_title', '__return_false' );
add_filter('wpseo_opengraph_type', '__return_false' );
add_filter('wpseo_opengraph_site_name', '__return_false' );
add_filter('wpseo_opengraph_image' , '__return_false' );JetPack kullanıyorsanız:
add_filter( 'jetpack_enable_open_graph', '__return_false' );
All-In-One SEO kullanıyorsanız:
remove_action('wp_head',array($aiosp, 'wp_head'));Ekleyin ve kaydedin silinmesi gerekecek.
Referans:
https://rankmath.com/kb/filters-hook...opengraph-tags
https://gist.github.com/amboutwe/811...omment-2674443
https://jetpack.com/blog/remove-open-graph-meta-tags/
https://wordpress.stackexchange.com/a/9084