Plugin info

Total downloads: 16,523
Active installs: 1,000
Total reviews: 14
Average rating: 4.8
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 1
Last updated: 7/25/2022 (1254 days ago)
Added to WordPress: 7/11/2015 (10 years old)
Minimum WordPress version: 3.5.0
Tested up to WordPress version: 6.0.9
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 1254 days ago • 14 reviews

24/100

Is Category and Taxonomy Meta Fields abandoned?

Possibly abandoned (last update 1254 days ago).

Compatibility

Requires WordPress: 3.5.0
Tested up to: 6.0.9
Requires PHP: f

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

No similar plugins found yet.

Description

Plugin to add custom meta fields within built in and custom taxonomies. Simply add the desired fields by going through WP-admin -> Settings ->Taxonomy Meta .

you can add following fields with category/taxonomy

  • Image.
  • Input Text.
  • Textarea.
  • Checkbox.

Features

  • Very simple in use
  • Can be customized easily.

Installation

  • Unzip into your /wp-content/plugins/ directory. If you’re uploading it make sure to upload
    the top-level folder. Don’t just upload all the php files and put them in /wp-content/plugins/.
  • Activate the plugin through the ‘Plugins’ menu in WordPress
  • Go to your WP-admin ->Settings menu a new “Taxonomy Meta” page is created.
  • Go to your WP-admin ->Settings ->Taxonomy Meta displayed in the category modification form with the meta you configured.
  • You can use the below function into your templates to retrieve all meta using ‘category id’:
if (function_exists('get_all_wp_terms_meta'))
{ 
   $arrayMetaList = get_all_wp_terms_meta($category_id);
   //where $category_id is category/term id
} 

// array all meta fields for category/term
print_r($arrayMetaList); 

  • you can use the below function into your templates to retrieve any particular meta using ‘category id’ and ‘meta key’:
if (function_exists('wp_get_terms_meta'))
{ 
  $MetaValue = wp_get_terms_meta($category_id, $meta_key ,true); 
  //where $category_id is 'category/term id' and $meta_key is 'meta key'
} 

//meta value for meta key $meta_key
echo $metaValue; 

Frequently Asked Questions

  1. No technical skills needed.

Review feed

No reviews available

Screenshots

  1. Settings page where you can add the custom fields

    Settings page where you can add the custom fields

  2. Example of the custom fields under the general category fields

    Example of the custom fields under the general category fields

Changelog

This is first version no known errors found