Answers for "cpt ui plugin hidden single post type from search results in website"

0

cpt ui plugin hidden single post type from search results in website

function my_cptui_add_post_type_to_search( $query ) {
	if ( is_admin() || ! $query->is_main_query() ) {
		return;
	}

	$query->set(
		'post_type',
		array( 'post', 'page', 'tour', 'struttura', 'offerta', 'project' )
	);
}

add_filter( 'pre_get_posts', 'my_cptui_add_post_type_to_search' );
Posted by: Guest on March-29-2022

Code answers related to "cpt ui plugin hidden single post type from search results in website"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language