Difference between revisions of "WordPress custom taxonomy"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(Making Custom Taxonomies)
Line 23: Line 23:
 
* [https://wp-types.com/home/types-manage-post-types-taxonomy-and-custom-fields/ Types] - "Easily create custom post types, custom fields and custom taxonomy and connect everything together."
 
* [https://wp-types.com/home/types-manage-post-types-taxonomy-and-custom-fields/ Types] - "Easily create custom post types, custom fields and custom taxonomy and connect everything together."
 
* [https://wordpress.org/plugins/custom-post-type-ui/ Custom Post Type UI] - "Admin UI for creating custom post types and custom taxonomies in WordPress"
 
* [https://wordpress.org/plugins/custom-post-type-ui/ Custom Post Type UI] - "Admin UI for creating custom post types and custom taxonomies in WordPress"
 +
* See also [https://wordpress.org/plugins/tags/custom-taxonomy plugins tagged "custom taxonomy"]]
  
 
You can write the PHP code for custom taxonomies, but plugins are much faster, and completely reliable (unlike writing code, which is subject to error).
 
You can write the PHP code for custom taxonomies, but plugins are much faster, and completely reliable (unlike writing code, which is subject to error).

Revision as of 19:48, 1 November 2016

In WordPress, a custom taxonomy is a system of classification for organizing WordPress Posts.

Description

WordPress provides two taxonomies: Categories and Tags.

You add custom taxonomies of your own: like Categories or Posts, but using terminology customized for a specific purpose.

Custom taxonomies create new web pages which users can browse for more detailed information.

For example, custom taxonomies related to a Custom Post Type named "Products" might include:

  • Color (black, white red)
  • Size (small, medium, large)
  • Material (fabric, leather, wood)

Custom taxonomies are most useful for large web sites with large amounts of relatively complex information.

Making Custom Taxonomies

Use a WordPress plugin, such as:

You can write the PHP code for custom taxonomies, but plugins are much faster, and completely reliable (unlike writing code, which is subject to error).

See also

External links