Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@kutoi94
Created January 10, 2020 08:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save kutoi94/577428d0de80c9a514e8a7f8887eb7ba to your computer and use it in GitHub Desktop.
Save kutoi94/577428d0de80c9a514e8a7f8887eb7ba to your computer and use it in GitHub Desktop.
Part 3 Series: Tạo và quản lý đặt phòng khách sạn với Meta Box
<?php get_header(); ?>
<div id="primary" class="content-area">
<main id="main" class="site-main">
<?php
while ( have_posts() ) : the_post();
get_template_part( 'template-parts/content', 'single' );
the_post_navigation();
echo do_shortcode("[mb_frontend_form id='booking-fields' post_fields='title,content']");
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
endwhile;
?>
</main>
</div>
<?php get_footer(); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment