add_action( 'init', 'update_my_custom_type', 99 );
/**
* update_my_custom_type
*
* @author Joe Sexton <joe@webtipblog.com>
*/
function update_my_custom_type() {
global $wp_post_types;
if ( post_type_exists( 'my-custom-type' ) ) {
// exclude from search results
$wp_post_types['envira']->exclude_from_search = true;
}
}
that one worked 🙂 could we use toogle in theme as the post arnt gallereis at all