Skip to content

Instantly share code, notes, and snippets.

@nicomollet
Last active June 9, 2023 12:51
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save nicomollet/1b90b5e8db8913a74974f005d7105e27 to your computer and use it in GitHub Desktop.
Save nicomollet/1b90b5e8db8913a74974f005d7105e27 to your computer and use it in GitHub Desktop.
Yoast Schema: Remove datePublished on WebPage
<?php
/**
* Yoast Schema: Remove datePublished on WebPage
*
* @param array $schema
*
* @return mixed
*/
function custom_wpseo_schema_webpage( $schema ) {
// Unset the published date
if ( isset( $schema["datePublished"] ) ) {
unset( $schema["datePublished"] );
}
return $schema;
}
add_filter( 'wpseo_schema_webpage', 'custom_wpseo_schema_webpage', 100, 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment