Questa è una parte del codice presente in search.php
Da quello che vedo la ricerca coinvolge "recipe" ovvero la parte del sito che riguarda le ricette, ma non so dove modificare per estendere la ricerca anche alle pagine del sito e agli altri articoli.

Codice PHP:
<?php

                    
global $paged$wp_query$wp;

                    if(
$cat != "All" && !empty($cat)) {

                        
$args = array(
                            
'post_type' => 'recipe',
                            
's' => $keyword,
                            
'posts_per_page' => -1,
                            
'tax_query' => array( array(
                                
'taxonomy' => 'recipesets',
                                
'field' => 'slug',
                                
'terms' => $cat,
                            ) ),
                        );

                    } else {

                        
$args = array(
                            
'post_type' => 'recipe',
                            
's' => $keyword,
                            
'posts_per_page' => -1,
                        );

                    }

                    
$wp_querynull;

                    
$wp_query = new WP_Query($args);

                
?>