create
Метод create класса SP_Framework_Taxonomy создает кастомую таксономию. В качестве параметров используется массив args.
Пример
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
<?php $spCT = new SP_Framework_Taxonomy(); $args = array( 'taxonomy' => 'my_taxonomy', 'post_type' => 'custom_post_type', 'name' => 'Custom taxonomy', 'singular_name' => 'Custom taxonomy', 'menu_name' => 'Custom taxonomy', 'all_items' => 'All', 'edit_item' => 'Edit', 'view_item' => 'View', 'update_item' => 'Update', 'add_new_item' => 'Add', 'new_item_name' => 'New', ); $spCT->create($args); ?> |