D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
danluatbos
/
domains
/
danluatbook.com
/
public_html
/
wp-content
/
themes
/
megastore
/
Filename :
archive.php
back
Copy
<?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. * Learn more: http://codex.wordpress.org/Template_Hierarchy * * @package 7up-framework */ get_header(); ?> <?php sv_display_breadcrumb();?> <div id="main-content" class="main-wrapper"> <?php do_action('sv_before_main_content')?> <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"> <?php the_archive_title('<h1 class="page-title">','</h1>'); ?> <ul class="blog-posts"> <?php if(have_posts()):?> <?php while (have_posts()) :the_post();?> <?php get_template_part('sv_templates/blog-content/content');?> <?php endwhile;?> <?php else : ?> <?php get_template_part( 'sv_templates/blog-content/content', 'none' ); ?> <?php endif;?> </ul> <?php wp_reset_postdata();?> <?php sv_paging_nav();?> </div> </div> <?php sv_output_sidebar('right')?> </div> </div> <?php do_action('sv_affter_main_content')?> </div> <?php get_footer(); ?>