WordPress Custom Post Type with ACF get data

<code>
?php%20echo%20get_template_directory_uri().
<link rel=’stylesheet’ href='<?php echo get_template_directory_uri().’/resCarousel.css’; ?>’ type=’text/css’ />

<?php
global $wp_query; // get the query object

$taxonomy = ‘categories’;
$terms = get_terms($taxonomy);

//$value = get_field(‘image_upload’, ‘categories_88’);
//print_r($value);
?>

term_id); ?>
“>

<h5 class=”text-center”><?php echo $term->name; ?></h5>
</div>
</div>
<?php } ?>
<?php endif;?>
</div>
<!– <button class=’btn btn-default leftRs’><</button>
<button class=’btn btn-default rightRs’>></button>–>
</div>

</div>

</div>

</code>

Leave a comment