Remove the date from the Open Graph schema in Yoast SEO

Remove the date from the Open Graph schema in Yoast SEO on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_filter(
    'wpseo_frontend_presenter_classes'
    , function($filter) {
        return array_diff($filter, [
            'Yoast\WP\SEO\Presenters\Open_Graph\Article_Published_Time_Presenter',
            'Yoast\WP\SEO\Presenters\Open_Graph\Article_Modified_Time_Presenter',
        ]);
    }
);

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.