front-page.php 729 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. /**
  3. * The template for a static front page
  4. *
  5. * @package Karuna
  6. */
  7. if ( 'posts' == get_option( 'show_on_front' ) ) :
  8. get_template_part( 'index' );
  9. else :
  10. get_header(); ?>
  11. <div id="primary" class="content-area">
  12. <main id="main" class="site-main" role="main">
  13. <?php while ( have_posts() ) : the_post(); ?>
  14. <?php get_template_part( 'components/page/content', 'page' ); ?>
  15. <?php endwhile; ?>
  16. <?php get_template_part( 'components/features/testimonials/testimonials' ); ?>
  17. <?php if ( (bool) 1 === (bool) get_theme_mod( 'karuna_display_recent_posts', 1 ) ) {
  18. get_template_part( 'components/features/recent-posts/recent-posts' );
  19. } ?>
  20. </main>
  21. </div>
  22. <?php get_footer(); ?>
  23. <?php endif; ?>