>
Download This Plugin | |
Download Elegant Themes | |
Name | User Taxonomies |
Version | 1.0 |
Author | Damian Gostomski |
Rating | 100 |
Last updated | 2012-03-04 02:43:00 |
Downloads |
1342
|
Download Plugins Speed Test plugin for Wordpress |
Home page PageSpeed score has been degraded by 0%, while Post page PageSpeed score has been degraded by 0%
User Taxonomies plugin added 27 bytes of resources to the Home page and 20 bytes of resources to the sample Post page.
User Taxonomies plugin added 0 new host(s) to the Home page and 0 new host(s) to the sample Post page.
Great! User Taxonomies plugin ads no tables to your Wordpress blog database.This plugin extends the default taxonomy functionality and extends it to users, while automating all the boilerplate code.
Once activated, you can register user taxonomies using the following code:
register_taxonomy('profession', 'user', array(
'public' =>true,
'labels' =>array(
'name' =>'Professions',
'singular_name' =>'Profession',
'menu_name' =>'Professions',
'search_items' =>'Search Professions',
'popular_items' =>'Popular Professions',
'all_items' =>'All Professions',
'edit_item' =>'Edit Profession',
'update_item' =>'Update Profession',
'add_new_item' =>'Add New Profession',
'new_item_name' =>'New Profession Name',
'separate_items_with_commas'=>'Separate professions with commas',
'add_or_remove_items' =>'Add or remove professions',
'choose_from_most_used' =>'Choose from the most popular professions',
),
'rewrite' =>array(
'with_front' =>true,
'slug' =>'author/profession',
),
'capabilities' => array(
'manage_terms' =>'edit_users',
'edit_terms' =>'edit_users',
'delete_terms' =>'edit_users',
'assign_terms' =>'read',
),
));
Read more about registering taxonomies in the codex This is heavily inspired by previous work by Justin Tadlock