functional solution:
// remove rich snippets for a particular page
function remove_gp_schema_type() {
if ( is_page(12) ){
add_filter( 'generate_schema_type', '__return_false' );
}
}
add_action('wp_head', 'remove_gp_schema_type');
-
This reply was modified 4 years, 8 months ago by ladipos.