wasmo-theme/template-questions.php
2023-01-30 11:31:32 -05:00

40 lines
No EOL
708 B
PHP
Executable file

<?php
/**
* Template Name: Questions
*
* The template for displaying all profiles in a directory
*
* @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();