Answers for "dispaly image on front end of custom taxonomy"

PHP
0

dispaly image on front end of custom taxonomy

$image_id = get_term_meta ( $term_id, 'image_id', true );

echo wp_get_attachment_image ( $image_id, 'full' );
Posted by: Guest on February-18-2022

Code answers related to "dispaly image on front end of custom taxonomy"

Browse Popular Code Answers by Language