Current File : /home/itiffy/rockyjohnsonconcrete.com/wp-content/themes/rockyjohnson/services.php |
<?php
/*Template Name: Services*/
get_header();
wp_reset_query();
?>
<?php include_once('top.php'); ?>
<div class="content">
<div class="services_sec serviceListPg section">
<div class="container">
<div class="pgHeading">
<h1><?php the_title(); ?></h1>
</div>
<div class="row">
<?php
wp_reset_query();
$args = array(
'post_type' => 'service',
'orderby' => 'title',
'order' => 'ASC',
);
$service = new WP_Query( $args );
while ($service -> have_posts()){ $service -> the_post(); ?>
<div class="col-md-3">
<div class="servBox">
<div class="thumb_img"><img src="<?php $serviceImg = get_field('service_thumbnail_image',get_the_ID()); echo $serviceImg['url']; ?>" alt="<?php echo $serviceImg['alt'] ?>" /></div>
<h4><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h4>
<p><?php echo get_field('home_page_short_description',get_the_ID()); ?></p>
<a class="btns" href="<?php the_permalink(); ?>">Read More</a>
</div>
</div>
<?php } ?>
</div>
</div>
</div><!--productListPg end-->
</div><!--Content end-->
<!--Footer start-->
<?php get_footer(); ?>
<?php include_once('commonJs.php'); ?>
</body>
</html>