film taxonomy
taxonomy of product(film)
// Register Custom Taxonomy function aksaya_films_taxonomy() { $labels = array( 'name' => 'film taxonomy', 'singular_name' => 'film taxonomy', 'menu_name' => 'دسته فیلم ها', 'all_items' => 'همه', 'parent_item' => 'دسته مادر', 'parent_item_colon' => 'Parent Item:', 'new_item_name' => 'نام', 'add_new_item' => 'افزودن', 'edit_item' => 'ویرایش', 'update_item' => 'بروز رسانی', 'view_item' => 'نمایش', 'separate_items_with_commas' => 'Separate items with commas', 'add_or_remove_items' => 'Add or remove items', 'choose_from_most_used' => 'Choose from the most used', 'popular_items' => 'Popular Items', 'search_items' => 'Search Items', 'not_found' => 'Not Found', 'no_terms' => 'No items', 'items_list' => 'Items list', 'items_list_navigation' => 'Items list navigation', ); $rewrite = array( 'slug' => 'film_taxonomy', 'with_front' => true, 'hierarchical' => true, ); $args = array( 'labels' => $labels, 'hierarchical' => true, 'public' => true, 'show_ui' => true, 'show_admin_column' => true, 'show_in_nav_menus' => true, 'show_tagcloud' => true, 'rewrite' => $rewrite, ); register_taxonomy( 'film_taxonomy', array( 'product' ), $args ); } add_action( 'init', 'aksaya_films_taxonomy', 0 );