Remove dateModified and datePublished schema
-
Hello,
I am trying to disable dateModified and datePublished info only in some posts, i had placed the following code in function.php, but does not work:
function vanv_remove_published_modified_dates( $graph_piece ) {
if ( is_single ( [ 531, 14145, 16179, 1006, 1337, 2083, 8, 15887, 17978, 18672, 2077, 15662, 17456, 14344 ] ) ) {
unset( $graph_piece[‘datePublished’], $graph_piece[‘dateModified’] );
return $graph_piece;
}
}
add_filter( ‘wpseo_schema_article’, ‘vanv_remove_published_modified_dates’ );add_filter( ‘wpseo_schema_webpage’, ‘vanv_remove_published_modified_dates’ );
Can you please help me, the objective is to google not show dates in snnipets.
Thanks.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Remove dateModified and datePublished schema’ is closed to new replies.