image.php 548 B

123456789101112131415161718192021
  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 get_template_part( 'content', 'image' ); ?>
  7. <?php endwhile; // end of the loop. ?>
  8. <?php do_action( 'foto_after_article_singular' ); ?>
  9. </section><!-- end #content .site-content -->
  10. <?php do_action( 'foto_after_content_singular' ); ?>
  11. <?php get_footer(); ?>