wawel-вага
// Register Custom Post Type
function add_weight_cpt() {
$labels = array(
'name' => 'Ваги',
'singular_name' => 'Вага',
'menu_name' => 'Ваги',
'name_admin_bar' => 'Ваги',
'parent_item_colon' => 'Parent Item:',
'all_items' => 'Всі варіанти',
'add_new_item' => 'Додати новий варіант',
'add_new' => 'Додатий новий',
'new_item' => 'Новий',
'edit_item' => 'Редагувати',
'update_item' => 'Оновити',
'view_item' => 'Переглянути',
'search_items' => 'Знайти',
'not_found' => 'Не знайдено',
'not_found_in_trash' => 'Не знайдено в кошику',
);
$args = array(
'label' => 'weight',
'description' => 'Варіанти ваги товарів',
'labels' => $labels,
'supports' => array( 'title', ),
'taxonomies' => array( 'categories' ),
'hierarchical' => false,
'public' => true,
'show_ui' => true,
'show_in_menu' => true,
'menu_position' => 5,
'menu_icon' => 'dashicons-products',
'show_in_admin_bar' => true,
'show_in_nav_menus' => true,
'can_export' => true,
'has_archive' => false,
'exclude_from_search' => false,
'publicly_queryable' => true,
'capability_type' => 'page',
);
register_post_type( 'weight', $args );
}
// Hook into the 'init' action
add_action( 'init', 'add_weight_cpt', 0 );