Skip to content

Instantly share code, notes, and snippets.

@schemapress
Last active October 16, 2019 23:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save schemapress/9616a8f9d9b5fa885b23a78f1839afa5 to your computer and use it in GitHub Desktop.
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/
<?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