Last active
August 29, 2015 14:15
-
-
Save rachelmccollin/8d6496e88579f907c2b6 to your computer and use it in GitHub Desktop.
wpmu DEV snippets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// set up labels | |
$labels = array( | |
'name' => 'Product Categories', | |
'singular_name' => 'Product Category', | |
'search_items' => 'Search Product Categories', | |
'all_items' => 'All Product Categories', | |
'edit_item' => 'Edit Product Category', | |
'update_item' => 'Update Product Category', | |
'add_new_item' => 'Add New Product Category', | |
'new_item_name' => 'New Product Category', | |
'menu_name' => 'Product Categories' | |
); | |
// register taxonomy | |
register_taxonomy( 'productcat', 'product', array( | |
'hierarchical' => true, | |
'labels' => $labels, | |
'query_var' => true, | |
'show_admin_column' => true | |
) ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment