Answers for "list wordpress custome taxonomy with image"

PHP
1

how to display the taxonomy image in wordpress

<?php

// get the current taxonomy term
$term = get_queried_object();

// vars
$image = get_field('cat_image', $term);

?>

<img src="<?php echo $image['url']; ?>" />
Posted by: Guest on November-16-2020

Code answers related to "list wordpress custome taxonomy with image"

Browse Popular Code Answers by Language