D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
vblioqus
/
apkstacker.com
/
wp-content
/
themes
/
infopediya
/
Filename :
archive.php
back
Copy
<?php /** * The template for displaying archive pages * @link https://codex.wordpress.org/Template_Hierarchy * @package Files_Custom_Theme */ get_header() ?> <div id="primary" class="content-area container mt-20"> <main id="main" class="site-main archive-main pl-0 col-lg-8 col-md-8 col-sm-8 col-xs-12 pr-0"> <?php if (have_posts()) : ?> <header class="page-header"> <?php the_archive_title('<h3 class="page-title">', '</h3>'); the_archive_description('<div class="archive-description">', '</div>'); ?> </header><!-- .page-header --> <div class="apps-container"> <?php /* Start the Loop */ while (have_posts()) : the_post(); /* * Include the Post-Format-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 Format name) and that will be used instead. */ get_template_part('template-parts/content', 'archive'); endwhile; else : get_template_part('template-parts/content', 'none'); endif; ?> </div> <div class="pagination-row row ml-0 mr-0 mb-20"> <?php infopediya_page_navi() ?> </div> </main><!-- #main --> <!-- <aside class="archive-sidebar pr-0 col-lg-4 col-md-4 col-sm-4 col-xs-12"> <?php //dynamic_sidebar('archive-sidebar') ?> </aside> --> </div><!-- #primary --> <?php get_footer();