Skip to content

Instantly share code, notes, and snippets.

@ulziibat-n
Forked from nicomollet/wpseo-schema-webpage.php
Created September 10, 2019 14:12
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ulziibat-n/e4e312b157c4eb97f71e42c165f0f0ae to your computer and use it in GitHub Desktop.
Save ulziibat-n/e4e312b157c4eb97f71e42c165f0f0ae 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