Сделал свой тип записей, как к нему добавить ещё и категории типа "гриль" и "мангал"
// Add Post Type Recipes
function super_grill_recipes() {
$labels = array(
'name' => _x( 'Рецепты', 'Тип записей Рецепты', 'root' ),
'singular_name' => _x( 'Рецепты', 'Тип записей Рецепты', 'root' ),
'menu_name' => __( 'Рецепты', 'root' ),
'all_items' => __( 'Все рецепты', 'root' ),
'view_item' => __( 'Смотреть рецепт', 'root' ),
'add_new_item' => __( 'Добавить новый рецепт', 'root' ),
'add_new' => __( 'Добавить новый', 'root' ),
'edit_item' => __( 'Редактировать рецепт', 'root' ),
'update_item' => __( 'Обновить рецепты', 'root' ),
'search_items' => __( 'Искать рецепт', 'root' ),
'not_found' => __( 'Не найдено', 'root' ),
'not_found_in_trash' => __( 'Не найдено в корзине', 'root' ),
);
$args = array(
'label' => __( 'recipes', 'root' ),
'description' => __( 'Каталог рецептов', 'root' ),
'labels' => $labels,
'supports' => array( 'title', 'editor', 'excerpt', 'author', 'thumbnail', 'comments', 'revisions', 'custom-fields', ),
'taxonomies' => array( 'genres' ),
'hierarchical' => false,
'public' => true,
'show_ui' => true,
'show_in_menu' => true,
'show_in_nav_menus' => true,
'show_in_admin_bar' => true,
'menu_position' => 5,
'can_export' => true,
'has_archive' => true,
'exclude_from_search' => false,
'publicly_queryable' => true,
'capability_type' => 'page',
);
register_post_type( 'recipes', $args );
}
add_action( 'init', 'super_grill_recipes' );