//ADD DIVI PROJECTS TO SEARCH RESULTS function my_remove_default_et_pb_custom_search(){remove_action('pre_get_posts','et_pb_custom_search');add_action('pre_get_posts','my_et_pb_custom_search')}add_action('wp_loaded','my_remove_default_et_pb_custom_search');function my_et_pb_custom_search($query=false){if (is_admin() || ! is_a($query,'WP_Query') || ! $query-&gt;is_search){return}if (isset($_GET['et_pb_searchform_submit'])){$postTypes=array();if (! isset($_GET['et_pb_include_posts']) &amp;&amp;! isset($_GET['et_pb_include_pages'])) $postTypes=array('post');if (isset($_GET['et_pb_include_pages'])) $postTypes=array('page');if (isset($_GET['et_pb_include_posts'])) $postTypes[]='post';$postTypes[]='project';$query-&gt;set('post_type',$postTypes);if (! empty($_GET['et_pb_search_cat'])){$categories_array=explode(',',$_GET['et_pb_search_cat']);$query-&gt;set('category__not_in',$categories_array)}if (isset($_GET['et-posts-count'])){$query-&gt;set('posts_per_page',(int) $_GET['et-posts-count'])}}}