CMB2_Post_Search_field::ajax_find_posts PHP Method

ajax_find_posts() public method

Check to see if we have a post type set and, if so, add the pre_get_posts action to set the queried post type
public ajax_find_posts ( )
    public function ajax_find_posts()
    {
        if (defined('DOING_AJAX') && DOING_AJAX && isset($_POST['cmb2_post_search'], $_POST['action'], $_POST['post_search_cpt']) && 'find_posts' == $_POST['action'] && !empty($_POST['post_search_cpt'])) {
            add_action('pre_get_posts', array($this, 'set_post_type'));
        }
    }