• Resolved devrekli

    (@devrekli)


    Hello. I want to remove these meta tags. How do I do that?

    <meta property=”article:tag” content=””>
    meta property=”og:updated_time” content=””>

    thanks

Viewing 1 replies (of 1 total)
  • Plugin Author Rank Math SEO

    (@rankmath)

    Hello @devrekli

    Thank you for contacting the support.

    To remove those tags, please add the following code in your theme’s functions.php file:

    add_filter( "rank_math/opengraph/facebook/article_tag", function( $content ) {
    	return '';
    });
    add_filter( "rank_math/opengraph/facebook/og_updated_time", function( $content ) {
    	return '';
    });

    Hope that helps.

Viewing 1 replies (of 1 total)

The topic ‘article:tag ?’ is closed to new replies.