Rating: 4 stars
I could wish for a bit more sophistication in the front-end interface — the documentation hints at a raft of options — but I’ve had it working for years now, and it keeps on ticking.
]]>Rating: 5 stars
Thank you! Works great and have a lot of options.
]]>Rating: 5 stars
Works as described! I can display multiple images if I select multiple categories for a post, but I can also still display only one image for an archive category and not have issues with other images being displayed for posts within that category assigned if I’m on a specific category page. I’m still trying to figure out how to get alt or title of image to display though.
]]>Rating: 5 stars
Hi,
I’m new in wordpress, how to call image in Loop category display ?
Rating: 5 stars
Works as expected. Thank you.
]]>Rating: 5 stars
I love this plugin.
]]>Rating: 5 stars
Works great!
]]>Rating: 5 stars
Only one who helped me
]]>Rating: 5 stars
Thank you so much for this plugin. Easy to use due to the good functional description.
]]>Rating: 5 stars
Thank you so much for useful plugin.
]]>Rating: 5 stars
Very easy to use.
]]>Rating: 5 stars
Hi,
I’ve tried pulling the image with no success. Can you please help with a sample code? Thanks
]]>Rating: 5 stars
I needed to add thumbnails to categories and display them on a page that lists all categories using get_categories() function. This plugin worked great for that and saved me a lot of time. Cheers!
]]>Rating: 5 stars
Judging by how old this plugin was I had my doubts, but less than a half hour after using it, it solved the troubles I was having of integrating featured images into my custom taxonomy I was developing for a custom theme.
Everything is so simple, and the code is well written and documented, so any intermediate developer can go in and make some minor customizations quite easily if needed. I’m very impressed! Worked perfect for me on wordpress 4.1 (some of the admin styles were a bit off but I couldn’t care less about that).
]]>Rating: 5 stars
Used it to display an image for my category pages. Easy tool to upload or select images already uploaded. Assign to chosen category directly below in this upload tool. Great!
]]>Rating: 1 star
It will show you a list of photos you have uploaded to WordPress and allow you to upload a new photos, but that’s it. There are no options or buttons or check boxes that allow you to select one for your thumbnail.
]]>Rating: 5 stars
I’ve used this to create a sponsor and funder taxonomy that I can attach to my custom ‘project’ posts. I’ve associated the sponsor/funder’s logo with each taxonomy term, and can now select which logos to display by simply selecting their name from the category list.
Requires that you know how to edit your theme’s templates, but the documentation is excellent and the plugin is easily customizable.
Recommended!
]]>Rating: 2 stars
Nice job on the admin side of things, but I couldn’t get it to show anything other than the small thumbnail size. Possibly that’s a theme issue, but the documentation wasn’t very helpful in resolving it. This theme supports category description so it was easier just to add some html in there.
]]>Rating: 3 stars
… why do you not provide one simple function to get the taxonomy image by taxonomy slug + term id? Please correct me if I had missed this.
]]>Rating: 3 stars
This is a great idea and much needed. Unfortunately the media loader is still using the old (pre-3.5) model and has no search function. The only way to filter images is by date, which might work for a blog. I tried it on a website with 1000+ images, about 800 of which were uploaded when the site was built, and was faced with browsing through over 80 pages of 10 thumbnails each to try to find the image I needed. Would love to see it brought up to date!
]]>Rating: 5 stars
Great plugin – you’ve just saved me hours of work (and what’s left of my hair) on a Woocommerce project. Thank you!
]]>Rating: 5 stars
It saved me a lot of time to customize my theme.
Thank you!
Rating: 5 stars
Very useful plugin, thank you!
]]>Rating: 5 stars
Just as advertised. Appreciate this plugin, thanks.
]]>Rating: 5 stars
Everything is ok, it works ??
]]>Rating: 1 star
Can’t get images of a category by ID, bad support
]]>Rating: 3 stars
These plugin devs drop a plugin here but neither of them seems to know what the word support means. Although it seems nice coded it is not flawless! They should add in description no support available by plugin-devs so ppl know what to expect if it is not working for whatever reason.
]]>Rating: 4 stars
The problem wouldn’t arise if you’re assigning medium to large images. In my case, I used small-sized icons 50×50 pixels as a category thumbnail, and WordPress threw a notice “Notice: image_resize is deprecated since version 3.5! Use wp_get_image_editor() instead.” in wp-admin/edit-tags.php?taxonomy=category page
I solved the notice by using the recommended wp_get_image_editor() API as follows. Comment-out the image_resize() API, and add two lines of $new = wp_get_image_editor(…….);
$new->resize( $detail[‘size’][0], $detail[‘size’][1], $detail[‘size’][2] );
Location: taxonomy-images.php line 176
/* Attempt to create a new downsized version of the original image.
$new = image_resize( $path,
$detail['size'][0],
$detail['size'][1],
$detail['size'][2]
);*/
$new = wp_get_image_editor( $path ); // Return an implementation that extends <tt>WP_Image_Editor</tt>
/* Image creation successful. Generate and cache image metadata. Return url. */
if ( ! is_wp_error( $new ) ) {
$new->resize( $detail['size'][0], $detail['size'][1], $detail['size'][2] );
$meta = wp_generate_attachment_metadata( $id, $path );
wp_update_attachment_metadata( $id, $meta );
$img = image_get_intermediate_size( $id, $detail['name'] );
if ( isset( $img['url'] ) ) {
return $img['url'];
}
}
]]>
Rating: 3 stars
The plugin does the job as advertised.
I’m taking away two stars for the following reason:
The media upload modal is still using the pre-3.5 interface, which starts to become a bit dysfunctional, I’m noticing a few glitches and overlaps here and there.
It’s ok for my personal use, but I’m quite afraid of handing it over to unexperienced users.
Also, in terms of UI, the button to select the image is very tiny and hardly standing out.
]]>Rating: 5 stars
This is an excellent quality plugin. It does it’s one task extremely well.
The code is also of very high quality and is simple to read, understand and inputted data is well sanitised.
]]>