D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
etb1lp46s9ed
/
public_html
/
indianacademy.co.in
/
wp-content
/
themes
/
edusion
/
Filename :
search.php
back
Copy
<?php /** * The template for displaying search results pages * * @link https://developer.wordpress.org/themes/basics/template-hierarchy/#search-result * * @package Edusion */ get_header(); edusion_search_banner(); ?> <!-- START BLOG --> <section class="blog_area_bg section-padding"> <div class="container"> <div class="row"> <?php if ( have_posts() ) : /* Start the Loop */ while ( have_posts() ) : the_post(); /* * Include the Post-Type-specific template for the content. * If you want to override this in a child theme, then include a file * called content-___.php (where ___ is the Post Type name) and that will be used instead. */ get_template_part( 'template-parts/content', 'search' ); endwhile; the_posts_pagination( array( 'mid_size' => 2, 'prev_text' => '<i class="ti-arrow-left"></i>', 'next_text' => '<i class="ti-arrow-right"></i>', ) ); else : get_template_part( 'template-parts/content', 'none' ); endif; ?> </div><!-- / END ROW --> </div><!-- END CONTAINER --> </section> <!-- END BLOG --> <?php get_footer();