single.php 601 B

12345678910111213141516171819202122
  1. <?php get_header(); ?>
  2. <?php do_action( 'foto_before_content_singular' ); ?>
  3. <section id="content" class="site-content" role="main">
  4. <?php do_action( 'foto_before_article_singular' ); ?>
  5. <?php while ( have_posts() ) : the_post(); ?>
  6. <?php foto_setPostViews(get_the_ID()); ?>
  7. <?php get_template_part( 'content', 'single' ); ?>
  8. <?php endwhile; // end of the loop. ?>
  9. <?php do_action( 'foto_after_article_singular' ); ?>
  10. </section><!-- end #content .site-content -->
  11. <?php do_action( 'foto_after_content_singular' ); ?>
  12. <?php get_footer(); ?>