test

get_search_query(), ‘post_type’ => ‘page’, ‘posts_per_page’ => -1 ); $query = new Network_Query($args); if ($query->have_posts()) { while ($query->have_posts()) { $query->the_post(); echo ‘

‘ . get_the_title() . ‘

‘; } } else { echo ‘No results found’; } ?>