You may have noticed that Open Graph tags have now been added to your WordPress blog in the latest Jetpack update.
But, if you’re like me, you already took care of your Open Graph tags a long time ago and they were functioning perfectly.
If you would like to remove these new Open Graph tags that are conflicting with your current tags then the answer is simple.
How to disable Jetpack Open Graph tags
Locate your WordPress themes functions.php file and add the following…
// remove jetpack open graph tags
remove_action('wp_head','jetpack_og_tags');
and that should remove it completely!
If you are using a WordPress theme based on the Genesis Framework, don’t worry!
How to disable Jetpack Open Graph tags on Genesis Framework
Locate your Genesis themes functions.php file and add the following…
add_filter( 'jetpack_enable_opengraph', '__return_false', 99 );
Enjoy!
















Comments