RDV Category Image
Add an image to a category or taxonomy. Display a category image using either a template tag or a shortcode.
The facts
- Rating
- 5★ from 2
- Active installs
- 300+
- Price
- Free
- Last updated
- 26 Jun 2026
- Added
- Sep 2021
- Requires WP
- 5.0
- Tested up to
- WP 7.0.4
- Requires PHP
- 7.4
- Downloads
- 5,928
Our analysis
AI-assistedThe RDV Category Image plugin enables you to add images to categories, tags, or custom taxonomies in WordPress. It provides functionality through PHP template tags and shortcodes, allowing you to display category images on category pages, posts, or within page builders.
This plugin is suitable for users who want to enhance their site’s categorisation by visually representing categories with images. It can be particularly useful for bloggers, e-commerce sites, or any WordPress site that utilises categories and tags for content organisation.
Best for: This plugin suits WordPress site owners looking to visually enhance their category presentations.
What it does well
- ✓Allows adding images to categories, tags, or custom taxonomies
- ✓Supports PHP template tags for direct integration
- ✓Includes shortcodes for flexible usage in posts and pages
- ✓Free to use from the WordPress.org directory
- ✓Compatible with WordPress version 7.0.4
Where it falls short
- •Limited information on additional features or support
- •No user documentation provided in the input
Verdict
RDV Category Image offers a straightforward way to add images to categories and tags, but lacks detailed documentation. It is a useful tool for those wanting to improve their site's visual organisation.
From the developer
rdvinfotech's own description of RDV Category Image, lightly tidied.
The RDV Category Image plugin allows adding an image to a category, tag, or custom taxonomy. Please review the code snippets below to display a category image on a category page template, page, or post.
-
Use the template tag
rdv_category_image_url();with the PHPechofunction to retrieve the category image URL, and then use it in an image tag.<?php if(function_exists('rdv_category_image_url')){ echo rdv_category_image_url(); } ?> -
Use the template tag
rdv_category_image();in the category template file to display the category image directly.<?php if(function_exists('rdv_category_image')){ rdv_category_image(); } ?> -
Use the shortcode in a page, post, or page builder template to display a category image. The basic shortcode without attributes
[rdv_category_image]displays the image on a category archive page. Use the shortcode attributesterm_idandsizeto display a specific category image and size on any page or post.[rdv_category_image] [rdv_category_image term_id="10"] [rdv_category_image size="thumbnail"] [rdv_category_image term_id="10" size="thumbnail"]