• Resolved rocketpig3

    (@rocketpig3)


    Hi,

    We have removed datepublished and datemodified from the article schema using code snippets, but it still remains in “ispartof”. How do we remove it from here?

    Thanks

Viewing 1 replies (of 1 total)
  • Plugin Support Rank Math Support

    (@rankmathsupport)

    Hello @rocketpig3,

    Thank you for contacting Rank Math support.

    To remove the dateModified and datePublished appearing in isPartOf from the schema, please add this filter on your site:

    add_filter( 'rank_math/json_ld', function( $data, $jsonld ) {
    unset($data['WebPage']['dateModified']);
    unset($data['WebPage']['datePublished']);
    return $data;
    }, 99, 2);


    Hope that helps.

Viewing 1 replies (of 1 total)
  • The topic ‘Removing datepublished from ispartof’ is closed to new replies.