1
Tạo danh mục chỉ dành cho loại bài đăng tùy chỉnh
Tất cả, tôi đang tạo loại bài đăng của riêng mình bằng mã sau: add_action( 'init', 'create_team_post_type' ); function create_team_post_type() { register_post_type( 'team', array( 'labels' => array( 'name' => __( 'Teams' ), 'singular_name' => __( 'Team' ) ), 'publicly_queryable' => true, 'show_ui' => true, 'query_var' => true, 'rewrite' => true, …