D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
danluatbos
/
domains
/
danluatbook.com
/
public_html
/
wp-content
/
themes
/
megastore
/
Filename :
search.php
back
Copy
<?php /** * The template for displaying search results pages. * * @package 7up-framework */ get_header(); ?> <?php sv_display_breadcrumb();?> <div class="main-wrapper tp-blog-page"> <div class="container"> <div class="row"> <?php sv_output_sidebar('left')?> <div class="<?php echo esc_attr(sv_get_main_class()); ?>"> <div class="main-page"> <h1 class="page-title"><?php printf( esc_html__( 'Search Results for: %s', 'megastore' ), get_search_query() ); ?></h1> <ul class="blog-posts"> <?php if ( have_posts() ) : ?> <?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('sv_templates/blog-content/content'); ?> <?php endwhile; ?> <?php sv_paging_nav();?><!-- Display navigation--> <?php else : ?> <h2><?php esc_html_e("No post for key search.","megastore")?></h2> <?php endif; ?> </ul> </div> </div> <?php sv_output_sidebar('right')?> </div> </div> </div> <?php get_footer(); ?>