theme_post_wrapper( array('content' => '

' . sprintf( __( 'Search Results for: %s', THEME_NS ), '' . get_search_query() . '' ) . '

' ) ); /* Display navigation to next/previous pages when applicable */ if (theme_get_option('theme_top_posts_navigation')) { theme_page_navigation(); } /* Start the Loop */ while (have_posts()) { the_post(); get_template_part('content', get_post_format()); } /* Display navigation to next/previous pages when applicable */ if (theme_get_option('theme_bottom_posts_navigation')) { theme_page_navigation(); } }