Adds a field to upload image to Rainlab Blog Category
Install the RainLab.Blog plugin
First you have to make sure you have added the RainLab.Blog plugin to your project.
Then add the Ribsousa.Featuredimages plugin.
Now you'll find a file field in the Blog Category when you add or edit a Category.
To view your featured images you find them by adding .featured_images to your category-object, just like you would on your featured_images. As an example:
{% for category in post.categories %} {# loop blog post.categories #}
{% if category.featured_images.count %} {# check to see if your category have any images #}
{% for image in category.featured_images %} {# loop category.featured_images display images #}
<img src="{{ image.path }}" alt="{{ image.file_name }}" />
{% endfor %}
{% endif %}
{% endfor %}