Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

<div class="container">

<div class="mid-title text-center">


<h1>Our courier services</h1>
</div>
<?php /* <div class="row">
<div class="col-md-6 text-xs-center"><img src="<?php
bloginfo('template_url'); ?>/images/export.jpg" alt=""></div>
<div class="col-md-6 text-md-right text-xs-center "><img src="<?php
bloginfo('template_url'); ?>/images/import.jpg" alt=""></div>
</div>
*/ ?>

<div class="row text-center our-services">


<?php $c_service = array( 'post_type' => 'ps_promotion', 'tax_query' =>
array( 'relation' => 'AND',array( 'taxonomy' => 'promotion-categories', 'field' =>
'term_id', 'terms' =>'11')));
$query = new WP_Query($c_service);
while ( $query->have_posts()) : $query->the_post();
$featuredImage =
wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'full' );
$url = get_field('page_urls');
echo '<div class="col-md-4 col-sm-6">';
echo '<a href="'. $url .'" class="item">';
echo '<img src="'.$featuredImage[0].'" alt="">';
echo '<h3>'.get_the_title().'</h3>';
//echo '<p>'.strip_tags(get_the_content()).'</p>';
echo '</a>';
echo '</div>';
endwhile; wp_reset_query();
?>
</div>
</div>

You might also like