46 lines
875 B
PHP
46 lines
875 B
PHP
<?php
|
|
/**
|
|
* The template for displaying archive pages
|
|
*
|
|
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
|
|
*
|
|
* @package WowPress
|
|
*/
|
|
|
|
get_header();
|
|
?>
|
|
|
|
<section id="primary">
|
|
<main id="main">
|
|
|
|
<?php if ( have_posts() ) : ?>
|
|
|
|
<header class="page-header">
|
|
<?php the_archive_title( '<h1 class="page-title">', '</h1>' ); ?>
|
|
</header><!-- .page-header -->
|
|
|
|
<?php
|
|
// Start the Loop.
|
|
while ( have_posts() ) :
|
|
the_post();
|
|
get_template_part( 'template-parts/content/content', 'excerpt' );
|
|
|
|
// End the loop.
|
|
endwhile;
|
|
|
|
// Previous/next page navigation.
|
|
wowpress_the_posts_navigation();
|
|
|
|
else :
|
|
|
|
// If no content, include the "No posts found" template.
|
|
get_template_part( 'template-parts/content/content', 'none' );
|
|
|
|
endif;
|
|
?>
|
|
</main><!-- #main -->
|
|
</section><!-- #primary -->
|
|
|
|
<?php
|
|
get_footer();
|