page.php 993 字节
<?php get_header();?>
  <section class="layout">
    	<nav class="path-bar">
          <ul class="path-nav">
              <li><a href="<?php home_url(); ?>/">Home</a></li><li><a href="#"><?php wp_title(); ?></a></li>
          </ul>
       </nav>

      <div class="main-tit-bar">
         <h1 class="title"><?php wp_title(); ?> </h1>
      </div>  
      <article class="entry blog-article">
<?php while ( have_posts() ) : the_post(); ?>
<?php the_content(); ?> 
<?php endwhile; ?>
<div class="clear"></div>
      </article>
<?php if( in_array( '显示页面询盘表单', get_field('inquiry_form') ) ){ ?>
	<section class="product-detail" style="margin-top:0px;">
	   <section class="inquiry-form-wrap ct-inquiry-form"><section class="layout"><script type="text/javascript" src="//www.globalso.site/form.js"></script><div class="ad_prompt">Write your message here and send it to us</div></section></section>
   </section>
<?php } ?>
		 <hr>
         
   </section>

<?php get_footer();?>