| Server IP : 35.154.56.2 / Your IP : 216.73.217.116 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ip-172-31-0-189 6.8.0-1029-aws #31-Ubuntu SMP Wed Apr 23 18:20:04 UTC 2025 aarch64 User : ubuntu ( 1000) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /srv/prima-automation.com/html/wp-content/themes/bapl/views/ |
Upload File : |
<?php
$taxonomyService = get_terms(array('taxonomy' => 'service', 'hide_empty' => false, 'parent' => 0, 'posts_per_page' => -1));
if(is_array($taxonomyService) && count($taxonomyService)) :
?><div class="row"><?php
foreach($taxonomyService as $service) {
$termFields = pods('service', $service->slug);
$termImg = $termFields->field('taxonomy-service-image');
?>
<div class="col-sm-4">
<div class="services-content">
<a href="<?php echo get_category_link($service->term_id); ?>"><img class="img-responsive" src="<?php echo $termImg['guid']; ?>"></a>
<div class="service-text">
<h4><?php echo $service->name; ?></h4>
<h6><?php echo $service->description; ?></h6>
</div>
<a href="<?php echo get_category_link($service->term_id); ?>" class="btn btn-details">View More <i class="fa fa-long-arrow-right"></i></a>
</div>
</div>
<?php
}
?></div><?php
endif;
?>