Sep 30, 2024 8:23 pm
i have to remove the tag <meta property="og:locale" content="de_DE"> from seo, how can i do this?
1 Reply
Oct 03, 2024 9:46 am
Hi,
Use this hook-code:
add_filter( 'wpforo_seo_meta_tags', function(string $metas){ return preg_replace( '#<meta\sproperty="og:locale"\scontent="de_DE"[\s/]*>#iu', '', $metas ); } );
You should insert it in the active theme functions.php file.
This article should be helpful for you: https://www.wpbeginner.com/plugins/how-to-easily-add-custom-code-in-wordpress-without-breaking-your-site/