Title: Image url
Last modified: September 1, 2016

---

# Image url

 *  [jelly_bean](https://wordpress.org/support/users/jelly_bean/)
 * (@jelly_bean)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/image-url-16/)
 * I just can’t get this to display the image url
 * The documentation says that this will work, but I can’t get it to work.
 * `$image_url = apply_filters( 'taxonomy-images-queried-term-image-url', '' );`
 * It echoes nothing.
 * I can get this to work
 * `echo wp_get_attachment_image( $term->image_id, 'related' );`
 * But that’s not quite what I’m after as I want the image to display with the <
   img> tag i.e.
    `<img src="<?php echo $src; ?>`
 * [https://wordpress.org/plugins/taxonomy-images/](https://wordpress.org/plugins/taxonomy-images/)

Viewing 1 replies (of 1 total)

 *  Thread Starter [jelly_bean](https://wordpress.org/support/users/jelly_bean/)
 * (@jelly_bean)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/image-url-16/#post-7506548)
 * I’ve got it working. But I’ve decided to use it as a background image instead
   of an img.
 *     ```
       <?php $src = wp_get_attachment_image_src( $term->image_id, 'related' ); ?>
       <div style="background:url('<?php echo $src[0]; ?>') no-repeat center center / cover; height: 428px;"></div>
       ```
   
 * img would be:
 * `<img src="<?php echo $src; ?>`

Viewing 1 replies (of 1 total)

The topic ‘Image url’ is closed to new replies.

 * ![](https://ps.w.org/taxonomy-images/assets/icon-256x256.png?rev=1283547)
 * [Taxonomy Images](https://wordpress.org/plugins/taxonomy-images/)
 * [Support Threads](https://wordpress.org/support/plugin/taxonomy-images/)
 * [Active Topics](https://wordpress.org/support/plugin/taxonomy-images/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/taxonomy-images/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/taxonomy-images/reviews/)

 * 1 reply
 * 1 participant
 * Last reply from: [jelly_bean](https://wordpress.org/support/users/jelly_bean/)
 * Last activity: [9 years, 11 months ago](https://wordpress.org/support/topic/image-url-16/#post-7506548)
 * Status: not resolved