forked from edpittol/comunidade-tema-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.php
26 lines (25 loc) · 795 Bytes
/
search.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
/**
* The template for displaying Search Results pages.
*
* @package Comunidade_WordPress_BR
* @since 1.0.0
*/
get_header(); ?>
<div id="primary" class="col-md-8">
<section id="content" role="main">
<?php if ( have_posts() ) : ?>
<header class="page-header">
<h1 class="page-title"><?php echo __( 'Search results for:', 'comunidade-wordpress-br' ) . ' <span>' . get_search_query() . '</span>'; ?></h1>
</header>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', get_post_format() ); ?>
<?php endwhile; ?>
<?php echo cmm_wpbr_pagination(); ?>
<?php else : ?>
<?php get_template_part( 'no-results' ); ?>
<?php endif; ?>
</section><!-- #content -->
</div><!-- #primary -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>