guestbook.php 929 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. /**
  3. * Single page template
  4. *
  5. * Template Name: Guestbook
  6. *
  7. * @package the-wedding-day
  8. */
  9. get_header();
  10. ?>
  11. <?php if ( have_posts() ) : the_post(); ?>
  12. <div class="pane main-pane">
  13. <div class="row">
  14. <div class="page-outer-wrapper">
  15. <div class="clearfix page-wrapper">
  16. <?php VamtamTemplates::$in_page_wrapper = true; ?>
  17. <article id="post-<?php the_ID(); ?>" <?php post_class( VamtamTemplates::get_layout() ); ?>>
  18. <?php comments_template( '/comments-guestbook.php', true ); ?>
  19. <div class="page-content">
  20. <?php the_content(); ?>
  21. <?php wp_link_pages( array(
  22. 'before' => '<div class="page-link">' . esc_html__( 'Pages:', 'vamtam-consulting' ),
  23. 'after' => '</div>',
  24. ) ); ?>
  25. <?php get_template_part( 'templates/share' ); ?>
  26. </div>
  27. </article>
  28. <?php get_template_part( 'sidebar' ) ?>
  29. </div>
  30. </div>
  31. </div>
  32. </div>
  33. <?php endif;
  34. get_footer();