Current File : /home/itiffy/silverservice.melbourne/wp-content/themes/silverservice/services.php |
<?php
/*Template Name:Our Service*/
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="services-section01 clearfix">
<div class="container">
<h2><?php the_title(); ?></h2>
<h6><?php the_field('page_sub_heading', $page_id); ?></h6>
<div class="row">
<?php
wp_reset_query();
$arr = array('post_type'=>'our_service', 'order_by'=>'date', 'order'=>'ASC');
$query = new WP_Query($arr);
while($query->have_posts()): $query->the_post();
?>
<div class="col-md-4">
<figure><img src="<?php the_post_thumbnail_url(); ?>" alt="<?php the_title(); ?>"></figure>
<article>
<h4><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h4>
<?php echo wp_trim_words( get_the_content(), 25, '...' ); ?>
<p><a href="<?php the_permalink(); ?>"><i class="fas fa-plus-circle"></i> Read More</a></p>
</article>
</div>
<?php endwhile; ?>
</div>
</div>
</div>
<div class="services-section02 clearfix" style="background-image:url(<?php $sec_banner = get_field('bottom_section_background_image', $page_id); echo $sec_banner['url']; ?>)">
<div class="container">
<section class="clearfix">
<h3><?php the_field('bottom_section_heading', $page_id); ?></h3>
<?php the_field('bottom_section_content', $page_id); ?>
<div class="btn-book01"><a href="<?php the_permalink(45); ?>">Book Your Fleet</a></div>
</section>
</div>
</div>
<!--Footer start-->
<?php get_footer(); ?>
<?php include_once('commonJs.php'); ?>
</body>
</html>