Current File : //home/itiffy/silverservice.melbourne/wp-content/themes/silverservice/contact.php
<?php
/*Template Name:Contact Us*/
get_header();
$page_id = get_the_ID();
?>
    <?php include_once('top.php'); ?>
           
    <!-- BANNER SECTION -->
       <div class="inner-banner-section clearfix" style="background:url(<?php wp_reset_query(); $banner = get_field('page_banner_image', $page_id); echo $banner['url']; ?>) no-repeat center / cover;"> </div>
    <!-- /BANNER SECTION -->

    <!-- CONTENT SECTION -->
       <div class="booking-section clearfix">
          <div class="container">
            <h2><?php the_title(); ?></h2>
            <h6>Get started with the finest</h6>
            <div class="row">
              <div class="col-md-8">
                <h4>Contact Form</h4>
                <hr>
                <?php echo do_shortcode('[contact-form-7 id="12" title="Contact Us form"]'); ?>
              </div>
              <div class="col-md-4">
                <div class="sidebar-section">
                  <article class="clearfix text-center">
                    <h4>Contact Info</h4>
                    <p><img src="<?php bloginfo('template_directory'); ?>/images/contact-info.png"></p>
                    <p><strong>Phone: <a href="tel:<?php $arr = array(' ', '-', '+'); echo $telephone = str_replace($arr, '', get_option('telephone')); ?>"><?php echo get_option('telephone'); ?></a></strong><br>
                      <strong>Mobile: <a href="tel:<?php echo $mobile = str_replace($arr, '', get_option('mobile')); ?>"><?php echo get_option('mobile'); ?></a></strong><br>
                      <strong>Email:</strong> <a href="mailto:<?php echo get_option('admin_email'); ?>"><?php echo get_option('admin_email'); ?></a></p>
                    <?php the_content(); ?>
                  </article>
                </div>
              </div>
            </div>
          </div>
</div>
     
    <!--Footer start-->   
    <?php get_footer(); ?>
    
	<?php include_once('commonJs.php');  ?>
</body>
</html>