{"id":4326,"date":"2008-12-27T02:22:50","date_gmt":"2008-12-27T02:22:50","guid":{"rendered":"https:\/\/wordpress.org\/plugins-wp\/custom-taxonomies\/"},"modified":"2010-02-19T04:43:00","modified_gmt":"2010-02-19T04:43:00","slug":"custom-taxonomies","status":"closed","type":"plugin","link":"https:\/\/wordpress.org\/plugins\/custom-taxonomies\/","author":886694,"comment_status":"closed","ping_status":"closed","template":"","meta":{"version":"1.2.4","stable_tag":"1.2.5","tested":"2.7","requires":"2.5","requires_php":"","requires_plugins":"","header_name":"Custom Taxonomies","header_author":"Brian Krausz","header_description":"","assets_banners_color":"","last_updated":"2010-02-19 04:43:00","external_support_url":"","external_repository_url":"","donate_link":"https:\/\/www.paypal.com\/cgi-bin\/webscr?cmd=_s-xclick&hosted_button_id=2105034","header_plugin_uri":"http:\/\/nerdlife.net\/custom-taxonomies\/","header_author_uri":"http:\/\/nerdlife.net\/","rating":0,"author_block_rating":0,"active_installs":50,"downloads":12255,"num_ratings":0,"support_threads":0,"support_threads_resolved":0,"author_block_count":0,"sections":["description","installation","faq"],"tags":[],"upgrade_notice":[],"ratings":{"1":0,"2":0,"3":0,"4":0,"5":0},"assets_icons":[],"assets_banners":[],"assets_blueprints":{},"all_blocks":[],"tagged_versions":["1.1","1.2","1.2.1","1.2.2","1.2.3","1.2.4","1.2.5"],"block_files":[],"assets_screenshots":{"screenshot-1.png":{"filename":"screenshot-1.png","revision":"1539327","resolution":"1","location":"plugin","width":1280,"height":1024}},"screenshots":{"1":"A dynamically generated term edit screen. <a href=\"http:\/\/wordpress.org\/extend\/plugins\/custom-taxonomies\/screenshot-1.png\">Full size<\/a>"}},"plugin_section":[],"plugin_tags":[83,563,940,91],"plugin_category":[57],"plugin_contributors":[94137],"plugin_business_model":[],"class_list":["post-4326","plugin","type-plugin","status-closed","hentry","plugin_tags-admin","plugin_tags-administration","plugin_tags-taxonomies","plugin_tags-taxonomy","plugin_category-taxonomy","plugin_contributors-bkrausz","plugin_committers-bkrausz"],"banners":[],"icons":{"svg":false,"icon":"https:\/\/s.w.org\/plugins\/geopattern-icon\/custom-taxonomies.svg","icon_2x":false,"generated":true},"screenshots":[{"src":"https:\/\/ps.w.org\/custom-taxonomies\/trunk\/screenshot-1.png?rev=1539327","caption":"A dynamically generated term edit screen. <a href=\"http:\/\/wordpress.org\/extend\/plugins\/custom-taxonomies\/screenshot-1.png\">Full size<\/a>"}],"raw_content":"<!--section=description-->\n<p>WordPress provides a lot of functionality geared towards the use of \ngeneric \"taxonomies\", such as Tags and Categories, but no way to manage \nthe taxonomies themselves.  This plugin allows you to:<\/p>\n\n<ul>\n<li>Create custom taxonomies with admin-set names and slugs for posts, \npages, or links<\/li>\n<li>Define whether or not to accept hierarchies, descriptions, multiple \nselections, and\/or tag-style entry<\/li>\n<li>Manage each taxonomy's terms in a full AJAX-interface<\/li>\n<li>Assign terms to posts, pages, and links just as you would with \ncategories and tags<\/li>\n<li>Setup permalinks<\/li>\n<li>Add widgets for your taxonomies into your site<\/li>\n<li><strong>NEW:<\/strong> Term Clouds!!<\/li>\n<li><strong>NEW:<\/strong> Support for single-selection taxonomies!!<\/li>\n<\/ul>\n\n<p><strong>Note:<\/strong> 2.6\/2.5 support is still in development, it's not themed \nproperly and isn't guarenteed to work properly.  <a href=\"http:\/\/nerdlife.net\/custom-taxonomies\/\">Please submit bug \nreports here.<\/a><\/p>\n\n<!--section=installation-->\n<ol>\n<li>Upload <code>custom-taxonomies<\/code> to the <code>\/wp-content\/plugins\/<\/code> directory<\/li>\n<li>Activate the plugin through the 'Plugins' menu in WordPress<\/li>\n<li>Use the <code>Taxonomies<\/code> page in <code>Settings<\/code> to create and manage taxonomies<\/li>\n<li>After creating a taxonomy, go to the <code>Widgets<\/code> page in <code>Appearance<\/code> to add a list of terms into your site's sidebar<\/li>\n<li>Use the examples below to use taxonomies in your themes:<\/li>\n<\/ol>\n\n<h4>Example Use<\/h4>\n\n<ul>\n<li><p>There 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-&gt;Widgets.<\/p><\/li>\n<li><p>To display a comma-seperated list of a post or page's taxonomy 'thing' in the format \"Things: Thing 1, Thing 2\" use <code>&lt;?php if(function_exists('custax_the_terms')) custax_the_terms('thing', 'Things: ', ', ', '&lt;br \/&gt;'); ?&gt;<\/code><\/p><\/li>\n<\/ul>\n\n<p>Additionally, we have provided these functions to make using taxonomies in code\/themes easier:<\/p>\n\n<ul>\n<li><p>To display a list of all terms for the taxonomy 'thing' use <code>&lt;?php if(function_exists('custax_list_terms')) custax_list_terms('thing'); ?&gt;<\/code> or add the 'Things' widget<\/p><\/li>\n<li><p>To display a tag cloud of terms for the taxonomy 'thing' use <code>&lt;?php if(function_exists('custax_term_cloud')) custax_term_cloud('thing'); ?&gt;<\/code> or add the 'Thing Cloud' widget<\/p><\/li>\n<\/ul>\n\n<h4>Advanced Use<\/h4>\n\n<p>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 \nwill be contributing heavily to this shortly):<\/p>\n\n<ul>\n<li><a href=\"http:\/\/codex.wordpress.org\/Function_Reference\/get_term\">get&#095;term<\/a><\/li>\n<li><a href=\"http:\/\/codex.wordpress.org\/Function_Reference\/get_term_by\">get&#095;term&#095;by<\/a><\/li>\n<li><a href=\"http:\/\/codex.wordpress.org\/Function_Reference\/get_term_children\">get&#095;term&#095;children<\/a><\/li>\n<li><a href=\"http:\/\/codex.wordpress.org\/Function_Reference\/get_terms\">get&#095;terms<\/a><\/li>\n<li><a href=\"http:\/\/codex.wordpress.org\/Function_Reference\/is_term\">is&#095;term<\/a><\/li>\n<li><a href=\"http:\/\/codex.wordpress.org\/Function_Reference\/wp_get_object_terms\">wp&#095;get&#095;object&#095;terms<\/a><\/li>\n<\/ul>\n\n<!--section=faq-->\n<dl>\n<dt>Isn't Automattic going to develop this into WordPress?<\/dt>\n<dd><p>In theory yes, the functionality is all there, all Automattic has to do \nis build the functionality into the administrative interface.  The \nproblem is, there seems to be relatively little demand in terms of \nquantity for the functionaliy (though those that do have a need seem to \nhave a strong need for it).  Similar to the advanced roles \nfunctionality, they may end up putting it on the backburner and letting \nplugins provide the functionality, making the core code less \ncomplicated.<\/p><\/dd>\n\n<\/dl>","raw_excerpt":"Custom Taxonomies provides a full administrative interface for creating \nand using taxonomies beyond the standard Tags and Categories.","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin\/4326","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin"}],"about":[{"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/types\/plugin"}],"replies":[{"embeddable":true,"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/comments?post=4326"}],"author":[{"embeddable":true,"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wporg\/v1\/users\/bkrausz"}],"wp:attachment":[{"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/media?parent=4326"}],"wp:term":[{"taxonomy":"plugin_section","embeddable":true,"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_section?post=4326"},{"taxonomy":"plugin_tags","embeddable":true,"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_tags?post=4326"},{"taxonomy":"plugin_category","embeddable":true,"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_category?post=4326"},{"taxonomy":"plugin_contributors","embeddable":true,"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_contributors?post=4326"},{"taxonomy":"plugin_business_model","embeddable":true,"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_business_model?post=4326"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}