Image Widget
A simple image widget that uses the native WordPress media manager to add image widgets to your site.
The facts
- Rating
- 4.9★ from 287
- Active installs
- 100k+
- Price
- Free
- Last updated
- 20 Apr 2026
- Added
- Jul 2008
- Requires WP
- 3.5
- Tested up to
- WP 6.7.7
- Downloads
- 4,718,752
Our analysis
AI-assistedImage Widget is a WordPress plugin that allows you to add image widgets to your site using the native WordPress media manager. It supports responsive design and offers features such as image resizing, alignment, and the ability to link images, along with optional title and description fields.
This plugin is suitable for users looking to enhance their site's visual appeal by easily incorporating images into widgets. It is developed by the team behind The Events Calendar and is actively maintained, making it a reliable choice for those needing image widget functionality.
Best for: This plugin suits WordPress users who want to add image widgets to their sites easily.
What it does well
- ✓Uses the native WordPress media manager
- ✓Supports responsive design
- ✓Allows image linking with optional title and description
- ✓Compatible with multisite installations
- ✓Customisable through filter hooks and theme overrides
Where it falls short
- •Limited information on advanced features
- •No specific details on support or documentation availability
Verdict
Image Widget provides a straightforward solution for adding images to widgets, making it a practical option for enhancing site design.
From the developer
Nexcess's own description of Image Widget, lightly tidied.
Image Widget is a simple plugin that uses the native WordPress media manager to add image widgets to your site.
Image Widget Features
- Responsive
- MU Compatible
- Handles image resizing and alignment
- Link the image
- Add title and description
- Versatile – all fields are optional
- Upload, link to external image, or select an image from your media collection
- Customize the look & feel with filter hooks or theme overrides
Quality You Can Trust
Image Widget is developed and maintained by The Events Calendar, the same folks behind The Events Calendar, Event Tickets, and a full suite of premium plugins.
This plugin is actively supported by our team and contributions from community members. If you see a question in the forum you can help with or have a great idea and want to code it up or submit a patch, that would be awesome! Not only will we shower you with praise and thanks, it’s also a good way to get to know us and lead into options for paid work if you freelance.
Pull Requests & Translations
Check us out on GitHub to pull request changes.
Translations can be submitted here on WordPress.org.
Documentation
The built in template can be overridden by files within your template.
Default vs. Custom Templates
The Image Widget comes with a default template for the widget output. If you would like to alter the widget display code, create a new folder called “image-widget” in your template directory and copy over the “views/widget.php” file.
Edit the new file to your hearts content. Please do not edit the one in the plugin folder as that will cause conflicts when you update the plugin to the latest release.
New in 3.2: You may now also use the “sp_template_image-widget_widget.php” filter to override the default template behavior for .php template files. Eg: if you wanted widget.php to reside in a folder called my-custom-templates/ and wanted it to be called my-custom-name.php:
add_filter('sp_template_image-widget_widget.php', 'my_template_filter');
function my_template_filter($template) {
return get_template_directory() . '/my-custom-templates/my-custom-name.php';
}