Home / Admin / Open graph
Duplicate Snippet

Embed Snippet on Your Site

Open graph

fix

Teddy James
<10
Code Preview
php
<?php
// Add this to your theme's functions.php file or a custom plugin
// Disable AIOSEO Open Graph if you're keeping another plugin/theme for it
add_filter('aioseo_disable_opengraph', '__return_true');
// If your theme generates Open Graph tags and you want to disable them
remove_action('wp_head', 'theme_opengraph_function');
// Example for disabling Open Graph in Yoast SEO if using another source
add_filter('wpseo_opengraph', '__return_false');

Comments

Add a Comment