Forums
Home / Plugin: Yoast SEO / How to remove <meta property="article:tag" from Post?
(@bdseo24)
4 years, 7 months ago
Hi I want to remove that <meta property=”article:tag” content=”Tag Name” /> from my post. Which filter I will use for this?
Thanks in Advance.
(@hinom)
Add this code in function.php:
function remove_wpseo_fb_tags() { global $wpseo_og; remove_action(‘wpseo_opengraph’, array($wpseo_og, ‘tags’), 16); } add_action(‘wpseo_opengraph’, ‘remove_wpseo_fb_tags’);