andersonmadeira / multiple-featured-images
Multiple Featured Images for your WP Posts
Installs: 14
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
pkg:composer/andersonmadeira/multiple-featured-images
This package is not auto-updated.
Last update: 2026-01-10 06:37:25 UTC
README
Wordpress plugin that enables multiple featured images in post types
Installation
Just a regular wp plugin installation
How to setup new images
Using this plugin is just a matter of setting the your image data and getting the image url later.
Set the image data in your functions.php file or elsewhere:
if ( class_exists('AMad_Multiple_Featured_Images') ) { $mfi = new AMad_Multiple_Featured_Images(); $mfi->register_image(array('custom_image', 'Custom Image')); $mfi->run(); }
- The code checks if the main plugin class exists, just for safety
custom_imageis the id (slug) for the image dataCustom Imageis the title of the metabox seen while editing the post- Then run the plugin code
Get the selected image
To get the url for the selected image:
$mfi->get_image_url( $post_id, 'custom_image' );
Contributions
Are always welcome.