Answers for "taxonomy featured image php"

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
0

wordpress featured image show

<?php echo the_post_thumbnail(); ?>
Posted by: Guest on July-09-2020

Code answers related to "taxonomy featured image php"

Browse Popular Code Answers by Language