Skip to content

Instantly share code, notes, and snippets.

@qwersk
Created June 26, 2017 04:06
Show Gist options
  • Save qwersk/fdcb32bb7a531ad68f1efeee502dc833 to your computer and use it in GitHub Desktop.
Save qwersk/fdcb32bb7a531ad68f1efeee502dc833 to your computer and use it in GitHub Desktop.
GET CUSTOM TAXONOMY TERMS #WP #WORDPRESS
<?php
$course_terms = get_terms( array(
'taxonomy' => 'course_category',
'hide_empty' => false,
) );
//fprint_r($course_terms);
foreach($course_terms as $course_term){
$course_category_id = $course_term->term_id;
$course_category_link = get_term_link($course_category_id);
$course_category_image = get_field("image", "course_category_".$course_category_id);
?>
<div class="col-md-4"><a href="<?php echo $course_category_link; ?>"><img src="<?php echo $course_category_image; ?>" alt="ico"> <span><?php echo $course_term->name; ?></span></a></div>
<?php
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment