Category and Taxonomy Image

0

Category and Taxonomy Image Plugin allow you to add image with category/taxonomy. you can use the following function into your templates to get category/term image: if (function_exis

Version
Last updated
Active installations
WordPress Version
Tested up to
Rating
Total ratings
Tags
This plugin is outdated and might not be supported anymore.

Description

  • Category and Taxonomy Image Plugin allow you to add image with category/taxonomy.
  • you can use the following function into your templates to get category/term image:
if (function_exists('get_wp_term_image'))
{
    $meta_image = get_wp_term_image($term_id); 
    //It will give category/term image url 
}

echo $meta_image; // category/term image url

where $term_id is ‘category/term id’

Features

  • Setting ,for which taxonomy ,image field is to be enable.
  • Very simple in use
  • Can be customized easily.