Remove schema “CollectionPage”

#624106
  • Resolved Phr Webmaster
    Rank Math free

    Hi,
    Need code snippet to remove the schema “CollectionPage” from the website.
    Thanks and Regards

Viewing 1 replies (of 1 total)
  • Hello,

    Thank you for contacting Rank Math and bringing your concern to our attention.

    The CollectionPage is a subset of the WebPage Schema. ​​​​​​If you would like to remove this type of Schema, you can use and customize this filter:

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

    Please note that the filter above applies to your whole site, but you can insert a conditional statement to apply it only to some of your pages.

    And here’s how you can add a filter/hook to your WordPress site:
    https://rankmath.com/kb/wordpress-hooks-actions-filters/

    Hope that helps.

    Thank you.

    Hello,

    Since we did not hear back from you for 15 days, we are assuming that you found the solution. We are closing this support ticket.

    If you still need assistance or any other help, please feel free to open a new support ticket, and we will be more than happy to assist.

    Thank you.

Viewing 1 replies (of 1 total)

The ticket ‘Remove schema “CollectionPage”’ is closed to new replies.