Current Path : /home/church/public_html/launch100ar.com/wp-content/themes/editor-blocks/ |
Current File : /home/church/public_html/launch100ar.com/wp-content/themes/editor-blocks/archive.php |
<?php /** * The template for displaying archive pages * * @link https://codex.wordpress.org/Template_Hierarchy * * @package editor-blocks * @copyright Copyright (c) 2018, Danny Cooper * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License */ get_header(); ?> <div class="content-area"> <?php if ( have_posts() ) : ?> <header class="archive-header"> <?php the_archive_title( '<h1 class="archive-title">', '</h1>' ); the_archive_description( '<div class="archive-description">', '</div>' ); ?> </header><!-- .page-header --> <?php while ( have_posts() ) : the_post(); get_template_part( 'template-parts/content', 'archive' ); endwhile; editor_blocks_the_posts_navigation(); else : get_template_part( 'template-parts/content', 'none' ); endif; ?> </div><!-- .content-area --> <?php get_sidebar(); get_footer();