mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-03 12:12:25 +08:00
9 lines
300 B
Text
9 lines
300 B
Text
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',
|
|
]);
|
|
}
|
|
);
|