This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
understrap/search.php

75 lines
1.7 KiB
PHP
Raw Normal View History

2014-12-10 11:36:38 +00:00
<?php
/**
* The template for displaying search results pages.
*
* @package understrap
*/
2016-11-21 18:47:05 +00:00
get_header();
$container = get_theme_mod( 'understrap_container_type' );
$sidebar_pos = get_theme_mod( 'understrap_sidebar_position' );
?>
<div class="wrapper" id="search-wrapper">
2016-03-09 09:16:22 +00:00
2016-11-21 18:47:05 +00:00
<div class="<?php echo esc_html( $container ); ?>" id="content" tabindex="-1">
<div class="row">
<!-- Do the left sidebar check and opens the primary div -->
<?php get_template_part( 'global-templates/left-sidebar-check', 'none' ); ?>
2016-03-09 09:16:22 +00:00
2016-11-21 18:47:05 +00:00
<main class="site-main" id="main">
2014-12-10 11:36:38 +00:00
2016-11-21 18:47:05 +00:00
<?php if ( have_posts() ) : ?>
2014-12-10 11:36:38 +00:00
2016-11-21 18:47:05 +00:00
<header class="page-header">
2016-02-15 08:14:43 +00:00
2017-01-27 14:37:59 +00:00
<h1 class="page-title"><?php printf( esc_html__( 'Search Results for: %s', 'understrap' ),
2016-11-21 18:47:05 +00:00
'<span>' . get_search_query() . '</span>' ); ?></h1>
2014-12-10 11:36:38 +00:00
2016-11-21 18:47:05 +00:00
</header><!-- .page-header -->
2014-12-10 11:36:38 +00:00
2016-11-21 18:47:05 +00:00
<?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>
2014-12-10 11:36:38 +00:00
2016-11-21 18:47:05 +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( 'loop-templates/content', 'search' );
?>
2014-12-10 11:36:38 +00:00
2016-11-21 18:47:05 +00:00
<?php endwhile; ?>
2014-12-10 11:36:38 +00:00
2016-11-21 18:47:05 +00:00
<?php else : ?>
2014-12-10 11:36:38 +00:00
2016-11-21 18:47:05 +00:00
<?php get_template_part( 'loop-templates/content', 'none' ); ?>
2014-12-10 11:36:38 +00:00
2016-11-21 18:47:05 +00:00
<?php endif; ?>
2016-11-21 18:47:05 +00:00
</main><!-- #main -->
2016-11-23 09:42:53 +00:00
<!-- The pagination component -->
<?php understrap_pagination(); ?>
2016-11-21 18:47:05 +00:00
</div><!-- #primary -->
2016-11-21 18:47:05 +00:00
<!-- Do the right sidebar check -->
<?php if ( 'right' === $sidebar_pos || 'both' === $sidebar_pos ) : ?>
2016-11-21 18:47:05 +00:00
<?php get_sidebar( 'right' ); ?>
2016-11-21 18:47:05 +00:00
<?php endif; ?>
2016-11-21 18:47:05 +00:00
</div><!-- .row -->
2016-11-21 18:47:05 +00:00
</div><!-- Container end -->
2014-12-10 11:36:38 +00:00
</div><!-- Wrapper end -->
<?php get_footer(); ?>