Last active
October 16, 2019 23:49
-
-
Save schemapress/9616a8f9d9b5fa885b23a78f1839afa5 to your computer and use it in GitHub Desktop.
Remove CollectionPage Schema from Categories or Tags https://schema.press/docs/disable-collectionpage-categories-tags/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php //* do not include php tag | |
// Disable CollectionPage schema output on Categories | |
add_filter( 'schema_wp_output_category_enabled', '__return_false' ); | |
// Disable CollectionPage schema output on Tags | |
add_filter( 'schema_wp_output_tag_enabled', '__return_false' ); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment