Thêm custom post type vào kết quả tìm kiếm trên wordpress

add code to file functions.php

function include_cpt_search( $query ) {
	
    if ( $query->is_search ) {
		$query->set( 'post_type', array( 'post', 'page', 'custom_post_type' ) );
    }
    
    return $query;
    
}
add_filter( 'pre_get_posts', 'include_cpt_search' ); 

Leave a Reply

Your email address will not be published. Required fields are marked *