wasmo-theme/template-shelf.php

37 lines
695 B
PHP
Raw Permalink Normal View History

<?php
/**
* Template Name: Shelf
*
* The template for displaying the shelf taxonomy index
*
* @subpackage wasmo
* @since 1.0.0
*/
get_header();
?>
<section id="primary" class="content-area">
<main id="main" class="site-main">
<?php
/* Start the Loop */
while ( have_posts() ) :
the_post();
get_template_part( 'template-parts/content/content', 'page' );
endwhile; // End of the loop.
?>
<section class="entry the-questions">
<div class="entry-content">
<?php get_template_part( 'template-parts/content/content', 'tax-shelf' ); ?>
</div>
</section>
</main><!-- #main -->
</section><!-- #primary -->
<?php
get_footer();