first commit
This commit is contained in:
48
wp/wp-content/themes/thbusiness/search.php
Normal file
48
wp/wp-content/themes/thbusiness/search.php
Normal file
@@ -0,0 +1,48 @@
|
||||
<?php
|
||||
/**
|
||||
* The template for displaying Search Results pages.
|
||||
*
|
||||
* @package thbusiness
|
||||
*/
|
||||
|
||||
get_header(); ?>
|
||||
<div class="col-xs-12 col-sm-12 col-md-8">
|
||||
<section id="primary" class="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', 'thbusiness' ), '<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.
|
||||
* 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' );
|
||||
?>
|
||||
|
||||
<?php endwhile; ?>
|
||||
|
||||
<?php thbusiness_paging_nav(); ?>
|
||||
|
||||
<?php else : ?>
|
||||
|
||||
<?php get_template_part( 'content', 'none' ); ?>
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
</main><!-- #main -->
|
||||
</section><!-- #primary -->
|
||||
|
||||
</div><!-- .col-xs-12 col-sm-12 col-md-8 -->
|
||||
<div class="col-xs-12 col-sm-6 col-md-4">
|
||||
<?php get_sidebar(); ?>
|
||||
</div><!-- .col-xs-12 .col-sm-6 .col-md-4 -->
|
||||
<?php get_footer(); ?>
|
||||
Reference in New Issue
Block a user