custom taxonomy
-
i cant create the colums in the admin panel.
the’show_admin_column’ is asign TRUE, but nothing happen.
that is the code, thanks in advance.
// Add a custom Tanonomy (Places) add_action( 'init', 'register_taxonomy_places' ); function register_taxonomy_places() { $labels = array( 'name' => _x( 'Places', 'places' ), 'singular_name' => _x( 'Place', 'places' ), 'search_items' => _x( 'Search Places', 'places' ), 'popular_items' => _x( 'Popular Places', 'places' ), 'all_items' => _x( 'All Places', 'places' ), 'parent_item' => _x( 'Parent Places', 'places' ), 'parent_item_colon' => _x( 'Parent Places:', 'places' ), 'edit_item' => _x( 'Edit Places', 'places' ), 'update_item' => _x( 'Update Places', 'places' ), 'add_new_item' => _x( 'Add New Places', 'places' ), 'new_item_name' => _x( 'New Places', 'places' ), 'separate_items_with_commas' => _x( 'Separate Places with commas', 'places' ), 'add_or_remove_items' => _x( 'Add or remove Places', 'places' ), 'choose_from_most_used' => _x( 'Choose from the most used Places', 'places' ), 'menu_name' => _x( 'Places', 'places' ), ); $args = array( 'labels' => $labels, 'public' => true, 'show_in_nav_menus' => true, 'show_ui' => true, 'show_tagcloud' => true, 'show_admin_column' => true, 'hierarchical' => true, 'capabilities' => array ( 'manage_terms' => 'manage_options', // only admin 'edit_terms' => 'manage_options', // only admin 'delete_terms' => 'manage_options', // only admin 'assign_terms' => 'read' // anyone can assign terms ), 'rewrite' => true, 'query_var' => true ); register_taxonomy( 'places', array('download'), $args ); }
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘custom taxonomy’ is closed to new replies.