Mathis Hüttl
Mathis Hüttl

Reputation: 301

Yoast SEO: remove og:description and twitter:description on certain page

how can i remove the og:description and twitter:description tag for a certain page with the yoast-seo plugin?

Upvotes: 1

Views: 3453

Answers (1)

Mathis Hüttl
Mathis Hüttl

Reputation: 301

I solved it on my own:

add_filter("wpseo_opengraph_desc", "remove_yoast_og");
add_filter("wpseo_twitter_description", "remove_yoast_og");
function remove_yoast_og($description) {
    if (is_page(1093)) {
        return false;
    }

    return $description;
}

Upvotes: 6

Related Questions