Created
January 10, 2020 08:35
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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