40 lines
No EOL
704 B
PHP
Executable file
40 lines
No EOL
704 B
PHP
Executable file
<?php
|
|
/**
|
|
* Template Name: Questions
|
|
*
|
|
* The template for displaying all questions in a list
|
|
*
|
|
* @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-question'
|
|
); ?>
|
|
</div>
|
|
</section>
|
|
</main><!-- #main -->
|
|
</section><!-- #primary -->
|
|
|
|
<?php
|
|
get_footer();
|