2012-01-07 03:25:13 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2014-06-24 23:13:36 +00:00
|
|
|
* The template for displaying search results pages.
|
2012-01-07 03:25:13 +00:00
|
|
|
*
|
|
|
|
* @package _s
|
|
|
|
*/
|
|
|
|
|
|
|
|
get_header(); ?>
|
|
|
|
|
2013-03-05 00:41:38 +00:00
|
|
|
<section id="primary" class="content-area">
|
2013-07-30 19:12:45 +00:00
|
|
|
<main id="main" class="site-main" role="main">
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2013-03-05 00:41:38 +00:00
|
|
|
<?php if ( have_posts() ) : ?>
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2013-03-05 00:41:38 +00:00
|
|
|
<header class="page-header">
|
|
|
|
<h1 class="page-title"><?php printf( __( 'Search Results for: %s', '_s' ), '<span>' . get_search_query() . '</span>' ); ?></h1>
|
|
|
|
</header><!-- .page-header -->
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2013-03-05 00:41:38 +00:00
|
|
|
<?php /* Start the Loop */ ?>
|
|
|
|
<?php while ( have_posts() ) : the_post(); ?>
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2014-05-13 06:37:56 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Run the loop for the search to output the results.
|
|
|
|
* If you want to overload this in a child theme then include a file
|
|
|
|
* called content-search.php and that will be used instead.
|
|
|
|
*/
|
|
|
|
get_template_part( 'content', 'search' );
|
|
|
|
?>
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2013-03-05 00:41:38 +00:00
|
|
|
<?php endwhile; ?>
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2014-12-19 01:34:18 +00:00
|
|
|
<?php the_posts_navigation(); ?>
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2013-03-05 00:41:38 +00:00
|
|
|
<?php else : ?>
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2013-10-13 11:08:48 +00:00
|
|
|
<?php get_template_part( 'content', 'none' ); ?>
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2013-03-05 00:41:38 +00:00
|
|
|
<?php endif; ?>
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2013-07-30 19:12:45 +00:00
|
|
|
</main><!-- #main -->
|
2013-03-05 00:41:38 +00:00
|
|
|
</section><!-- #primary -->
|
2012-01-07 03:25:13 +00:00
|
|
|
|
|
|
|
<?php get_sidebar(); ?>
|
2013-10-13 11:08:48 +00:00
|
|
|
<?php get_footer(); ?>
|