Current Path : /home/church/www/paradigmmar.com/wp-content/themes/honeypress/ |
Current File : /home/church/www/paradigmmar.com/wp-content/themes/honeypress/search.php |
<?php /** * The main template file * * This is the most generic template file in a WordPress theme * and one of the two required files for a theme (the other being style.css). * It is used to display a page when nothing more specific matches a query. * E.g., it puts together the home page when no home.php file exists. * * @link https://developer.wordpress.org/themes/basics/template-hierarchy/ * * @package Honeypress */ get_header();?> <section class="section-module blog"> <div class="container"> <div class="row"> <?php if ( is_active_sidebar( 'sidebar-1' ) ): echo '<div class="col-lg-8 col-md-7 col-sm-12 standard-view">'; else: echo '<div class="col-lg-12 col-md-12 col-sm-12 standard-view">'; endif; if(have_posts()): while(have_posts()): the_post(); get_template_part( 'template-parts/content', 'search' ); endwhile; else: get_template_part( 'template-parts/content', 'none' ); endif; do_action('honeypress_post_navigation');?> </div> <?php get_sidebar();?> </div> </div> </section> <?php get_footer();?>