Your IP : 216.73.216.95


Current Path : /var/test/www/html/seeds/wp-content/themes/raze/
Upload File :
Current File : /var/test/www/html/seeds/wp-content/themes/raze/search.php

<?php
/**
 * The template for displaying search results pages.
 *
 * @package raze
 */

get_header(); ?>

	<section id="primary" class="<?php do_action('raze_primary-width') ?> content-area">
		<main id="main" class="site-main" role="main">

		<?php if ( have_posts() ) : ?>

			<header class="page-header">
				<h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'raze' ), '<span>' . get_search_query() . '</span>' ); ?></h1>
			</header><!-- .page-header -->

			<?php /* Start the Loop */ ?>
			<?php while ( have_posts() ) : the_post(); ?>

				<?php
				/**
				 * Run the loop for the search to output the results.
				  */
				get_template_part('content', 'search');
				?>

			<?php endwhile; ?>

			<?php raze_pagination(); ?>

		<?php else : ?>

			<?php get_template_part( 'content', 'none' ); ?>

		<?php endif; ?>

		</main><!-- #main -->
	</section><!-- #primary -->

<?php get_sidebar(); ?>
<?php get_footer(); ?>