Custom Taxonomies provides a full administrative interface for creating and using taxonomies beyond the standard Tags and Categories.
custom-taxonomies to the /wp-content/plugins/ directoryTaxonomies page in Settings to create and manage taxonomiesWidgets page in Appearance to add a list of terms into your site's sidebarThere are two widget types for each taxonomy you create: a category-style list, and a tag-style cloud. You can assign these after creating a taxonomy via Appearance->Widgets.
To display a comma-seperated list of a post or page's taxonomy 'thing' in the format "Things: Thing 1, Thing 2" use <?php if(function_exists('custax_the_terms')) custax_the_terms('thing', 'Things: ', ', ', '<br />'); ?>
Additionally, we have provided these functions to make using taxonomies in code/themes easier:
To display a list of all terms for the taxonomy 'thing' use <?php if(function_exists('custax_list_terms')) custax_list_terms('thing'); ?> or add the 'Things' widget
To display a tag cloud of terms for the taxonomy 'thing' use <?php if(function_exists('custax_term_cloud')) custax_term_cloud('thing'); ?> or add the 'Thing Cloud' widget
If you'd like to use these taxonomies in a more advanced way, please see the following documentation (note that most of it has yet to be written, I will be contributing heavily to this shortly):
Requires: 2.5 or higher
Compatible up to: 2.7
Last Updated: 2009-2-19
Downloads: 8,797
Got something to say? Need help?