Multiple Featured Images: Reloaded
This plugin allows developers to easily register additional image pickers for any post type.
Maintenance 22/1004305d since update
Active installs
10
Downloads
1,751
Reviews
4
Age
11.8y
Tagsadminimages
Plugin info
Total downloads: 1,751
Active installs: 10
Total reviews: 4
Average rating: 3.3
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 2
Last updated: 3/18/2014 (4305 days ago)
Added to WordPress: 3/18/2014 (11 years old)
Minimum WordPress version: 3.6
Tested up to WordPress version: 3.6.1
Minimum PHP version: f
Maintenance & Compatibility
Maintenance score
Possibly abandoned • Last updated 4305 days ago • 4 reviews
22/100
Is Multiple Featured Images: Reloaded abandoned?
Possibly abandoned (last update 4305 days ago).
Compatibility
Requires WordPress: 3.6
Tested up to: 3.6.1
Requires PHP: f
Similar & Alternatives
Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.
SEO Friendly Images
Rating 3.0/5 (59 reviews) • Active installs 20,000
PB SEO Friendly Images
Rating 3.6/5 (26 reviews) • Active installs 10,000
Featured Galleries
Rating 4.7/5 (20 reviews) • Active installs 4,000
Require Featured Image
Rating 3.9/5 (16 reviews) • Active installs 4,000
Custom Admin Branding
Rating 0.0/5 (0 reviews) • Active installs 2,000
Description
This plugin allows developers to easily register additional image pickers for any post type.
Installation
- Upload
mfi-reloadedto the/wp-content/plugins/directory - Activate the plugin through the ‘Plugins’ menu in WordPress
- Use the provided template tags to create image pickers and display the data you need
Frequently Asked Questions
How do I add an image picker?
Easy! In your theme’s functions.php file, add the following code:
function register_custom_image_pickers() {
add_theme_support('mfi-reloaded', array(
'hero-image' => array(
'post_types' => array('post'),
'labels' => array(
'name' => __('Hero Image'),
'set' => __('Set hero image'),
'remove' => __('Remove hero image'),
'popup_title' => __('Set Hero Image'),
'popup_select' => __('Set hero image'),
),
),
'sidekick-image' => array(
'post_types' => array('post'),
'labels' => array(
'name' => __('Sidekick Image'),
'set' => __('Set sidekick image'),
'remove' => __('Remove sidekick image'),
'popup_title' => __('Set Sidekick Image'),
'popup_select' => __('Set sidekick image'),
),
),
));
}
add_action('after_setup_theme', 'register_custom_image_pickers');
Feel free to provide whatever values you need.
Review feed
No reviews available
Screenshots
No screenshots available
Changelog
1.0.0
- Changed from using a custom template tag for adding image pickers to the WordPress function
add_theme_support
1.0.0-RC1
- Initial release