Plugin to add custom meta fields within built in and custom taxonomies. Simply add the desired fields by going through WP-admin -> Settings ->Ta …
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
/wp-content/plugins/
directory. If you’re uploading it make sure to upload/wp-content/plugins/
.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);
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;
This is first version no known errors found