Maga Category Images
Maga Category Images v1.2.1 By Ricardo Magallanes. Associates an image file (jpg or png) to a given category.
Plugin info
Maintenance & Compatibility
Maintenance score
Possibly abandoned • Last updated 4736 days ago
Is Maga Category Images abandoned?
Possibly abandoned (last update 4736 days ago).
Compatibility
Similar & Alternatives
Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.
Description
Maga Category Images v1.2.1 By Ricardo Magallanes.
Associates an image file (jpg or png) to a given category.
Upgrading to 1.2.1
If you are upgrading from an older version of this plugin it is very important that you backup your img folder found on this plugin’s directory before you upgrade.
After you update the plugin overwrite the img folder with the old one, otherwise you will lose your images.
I will provide a fix so that this is not necessary on the next update. Sorry for the inconvenience.
1.2.1
I reorganized the files so that the automatic plugin installer would work properly.
1.2
Addressed several bugfixes regarding the wordpress prefix and some icons that weren’t visible.
The category selection box now features a recursive function to traverse through all the categories at all levels.
1.1
Added a table where you can view the images that are assigned to the category and added a cleanup functions that will clean
the database of all records that belong to categories that are not in wordpress anymore.
For any bug reports, comments or feedback, please email me at [email protected]
Installation
Setup Instructions:
-
Drag the ‘maga-category-images’ folder into your Plugins Folder.
-
Find the plugin in the WordPress Admin and Activate it.
-
After Activation you will find the ‘Category Images’ section under Settings.
-
Fill out the form, choosing the images you want and the category you wish to associate them with.
-
In your wordpress theme.. you can use two functions that are called invoking the $maga object.
$maga->getSpecficImage($id) : Returns the url of the image corresponding to that category. This method can be used anywhere as long as you can fetch the ID you want.
$maga->getImageInCategory : Returns the url of the image corresponding to the category you are currently browsing. This method is better suited for its use in your category.php files.
Example Usage:
<?php if($maga) : ?>
<img src = "<?php echo $maga->getImageInCategory(); ?>"/>
<?php endif; ?>
<?php if($maga) : ?>
<img src = "<?php echo $maga->getSpecificImage(3); ?>"/>
<?php endif; ?>