Code đăng ký taxonomy chuẩn nhất giúp chúng ta copy nhanh vào dự án
Friday, December 23, 2016 0:03
% of readers think this story is Fact. Add your two cents.
Đây là code đăng ký taxonomy chuẩn giúp anh chị copy vào dự án của mình:
add_action( 'init', function() { register_taxonomy( 'news_category', 'news', [ 'labels' => [ 'name' => __( 'News Categories', ABC ), 'singular_name' => __( 'News Category', ABC ), 'search_items' => __( 'Search News Categories', ABC ), 'all_items' => __( 'All News Categories', ABC ), 'parent_item' => __( 'Parent News Categories', ABC ), 'parent_item_colon' => __( 'Parent News Category:', ABC ), 'edit_item' => __( 'Edit News Category', ABC ), 'update_item' => __( 'Update News Category', ABC ), 'add_new_item' => __( 'Add News Category', ABC ), 'new_item_name' => __( 'New News', ABC ), 'menu_name' => __( 'News Categories', ABC ), ], 'rewrite' => [ 'slug' => 'news-category', 'hierarchical' => true ], 'hierarchical' => true, 'show_admin_column' => true, 'query_var' => true ]); });
2016-12-22 23:00:05
Nguồn: http://fcwordpress.net/code-dang-ky-taxonomy-chuan-nhat-giup-chung-ta-copy-nhanh-vao-du-an.html