mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
6 lines
159 B
Text
6 lines
159 B
Text
add_filter(
|
|
'relevanssi_forbidden_post_types',
|
|
function( $post_types ) {
|
|
return array_merge( $post_types, array( 'product', 'tribe_events' ) );
|
|
}
|
|
);
|