Я создал пользовательский тип поста для портфолио, как бы я ни создавал таксономию, то есть категории портфеля, но дело в том, когда я создал любой пост и назначил ему категорию, поэтому после публикации пост виден, но категория не видно в сообщении, я не знаю, почему оно скрывается после публикации сообщения. Спасибо
Это мой код
/**
* custom post Portfolio_page.
*/
function custom_post_type() {
$labels = array(
'name' => __( 'portfolio' ),
'singular_name' => __( 'portfolio'),
'menu_name' => __( 'portfolios'),
'parent_item_colon' => __( 'Parent Deal'),
'all_items' => __( 'All portfolios'),
'view_item' => __( 'View portfolio'),
'add_new_item' => __( 'Add New portfolio'),
'add_new' => __( 'Add New'),
'edit_item' => __( 'Edit portfolio'),
'update_item' => __( 'Update portfolio'),
'search_items' => __( 'Search portfolio'),
'not_found' => __( 'Not Found'),
'not_found_in_trash' => __( 'Not found in Trash')
);
$args = array(
'label' => __( 'portfolio'),
'description' => __( 'Loops digital portfolio'),
'labels' => $labels,
'supports' => array( 'title', 'editor', 'excerpt', 'author', 'thumbnail', 'revisions', 'custom-fields'),
'public' => true,
'hierarchical' => false,
'show_ui' => true,
'show_in_menu' => true,
'show_in_nav_menus' => true,
'show_in_admin_bar' => true,
'has_archive' => true,
'can_export' => true,
'exclude_from_search' => false,
'publicly_queryable' => true,
'capability_type' => 'page'
);
register_post_type( 'portfolio', $args );
}
add_action( 'init', 'custom_post_type', 0 );
/**
* Custom Taxonomy for Custom post type
*/
add_action( 'init', 'custom_post_type_taxonomy', 0 );
function custom_post_type_taxonomy() {
$labels = array(
'name' => _x( 'portfolio_categories', 'taxonomy general name' ),
'singular_name' => _x( 'portfolio_category', 'taxonomy singular name' ),
'search_items' => __( 'Search portfolio_categories' ),
'all_items' => __( 'All portfolio_categories' ),
'parent_item' => __( 'Parent portfolio_categories' ),
'parent_item_colon' => __( 'Parent portfolio_categories:' ),
'edit_item' => __( 'Edit portfolio_categories' ),
'update_item' => __( 'Update portfolio_categories' ),
'add_new_item' => __( 'Add New portfolio_categories' ),
'new_item_name' => __( 'New portfolio_categories Name' ),
'menu_name' => __( 'portfolio_categories' ),
);
register_taxonomy('portfolio_categories',array('portfolio'), array(
'hierarchical' => true,
'labels' => $labels,
'show_ui' => true,
'show_admin_column' => true,
'query_var' => true,
'rewrite' => array( 'slug' => 'portfolio_categories' ),
));
}