get single.php image src
-
How to get the category image src on single.php
My code don’t works:
<?php $terms = apply_filters( 'taxonomy-images-get-terms', '' ); if ( ! empty( $terms ) ) { foreach ( (array) $terms as $term ) { $image_url = apply_filters( 'taxonomy-images-queried-term-image-url', '', array( 'image_id' => $term->image_id ) ); print 'src:'.$image_url.'</li>'; } } ?>
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘get single.php image src’ is closed to new replies.