Code-Snippets-Functions/Execute a function on a child site/Relevanssi/block-post-types.txt

6 lines
159 B
Text

add_filter(
'relevanssi_forbidden_post_types',
function( $post_types ) {
return array_merge( $post_types, array( 'product', 'tribe_events' ) );
}
);