Meta for taxonomies

Metadatas is attached to taxonomy context and not terms, this way allow to have metas different for the same term on 2 different taxonomies !

Author:Be API (profile at wordpress.org)
WordPress version required:3.0
WordPress version tested:4.0
Plugin version:1.2.1
Added to WordPress repository:18-06-2010
Last updated:09-11-2014
Warning! This plugin has not been updated in over 2 years. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.
Rating, %:0
Rated by:0
Plugin URI:http://www.beapi.fr
Total downloads:2 329
Active installs:10+
plugin download
Click to start download

Add meta for any taxonomies. Meta is attached to taxonomy context and not terms, this way allow to have metas different for the same term on 2 different taxonomies.

It's the better implementation for this feature.

This plugin don't any interface on WordPress ! Only somes methods for developpers.

This plugin propose many functions for terms :

  • add_term_meta( $taxonomy = '', $term_id = 0, $meta_key = '', $meta_value = '', $unique = false )
  • delete_term_meta( $taxonomy = '', $term_id = 0, $meta_key = '', $meta_value = '')
  • get_term_meta( $taxonomy = '', $term_id = 0, $meta_key = '', $single = false )
  • update_term_meta( $taxonomy = '', $term_id = 0, $meta_key, $meta_value, $prev_value = '' )

And many others functions term taxonomy context :

  • add_term_taxonomy_meta( $term_taxonomy_id = 0, $meta_key = '', $meta_value = '', $unique = false )
  • delete_term_taxonomy_meta( $term_taxonomy_id = 0, $meta_key = '', $meta_value = '')
  • get_term_taxonomy_meta( $term_taxonomy_id = 0, $meta_key = '', $single = false )
  • update_term_taxonomy_meta( $term_taxonomy_id = 0, $meta_key, $meta_value, $prev_value = '' )

And many others...

For full info go the Meta for taxonomies Github page.