BLCKCR – Oferta
Oferta
// Register Custom Post Type function oferta() { $labels = array( 'name' => _x( 'Oferty', 'Post Type General Name', 'blackcore' ), 'singular_name' => _x( 'Oferta', 'Post Type Singular Name', 'blackcore' ), 'menu_name' => __( 'Oferta', 'blackcore' ), 'name_admin_bar' => __( 'Oferta', 'blackcore' ), 'archives' => __( 'Archiwum pozycji', 'blackcore' ), 'attributes' => __( 'Atrybuty pozycji', 'blackcore' ), 'parent_item_colon' => __( 'Rodzic pozycji:', 'blackcore' ), 'all_items' => __( 'Wszystkie pozycje', 'blackcore' ), 'add_new_item' => __( 'Dodaj nową pozycję', 'blackcore' ), 'add_new' => __( 'Dodaj nową ofertę', 'blackcore' ), 'new_item' => __( 'Nowa oferta', 'blackcore' ), 'edit_item' => __( 'Edytuj ofertę', 'blackcore' ), 'update_item' => __( 'Aktualizuj ofertę', 'blackcore' ), 'view_item' => __( 'Zobacz ofertę', 'blackcore' ), 'view_items' => __( 'Zobacz oferty', 'blackcore' ), 'search_items' => __( 'Wyszukaj oferte', 'blackcore' ), 'not_found' => __( 'Nie znaleziono', 'blackcore' ), 'not_found_in_trash' => __( 'Nie znaleziono w koszu', 'blackcore' ), 'featured_image' => __( 'Ikona oferty', 'blackcore' ), 'set_featured_image' => __( 'Wstaw ikonę oferty', 'blackcore' ), 'remove_featured_image' => __( 'Usuń ikonę oferty', 'blackcore' ), 'use_featured_image' => __( 'Użyj jako ikonę oferty', 'blackcore' ), 'insert_into_item' => __( 'Wstaw do oferty', 'blackcore' ), 'uploaded_to_this_item' => __( 'Wstawiono do oferty', 'blackcore' ), 'items_list' => __( 'Lista pozycji', 'blackcore' ), 'items_list_navigation' => __( 'Nawigacja listy pozycji', 'blackcore' ), 'filter_items_list' => __( 'Filtruj listę pozycji', 'blackcore' ), ); $args = array( 'label' => __( 'Oferta', 'blackcore' ), 'description' => __( 'Pozycje Oferty', 'blackcore' ), 'labels' => $labels, 'supports' => array( 'title', 'editor', 'thumbnail', 'custom-fields', 'page-attributes', 'post-formats' ), 'taxonomies' => array( 'category' ), 'hierarchical' => true, 'public' => true, 'show_ui' => true, 'show_in_menu' => true, 'menu_position' => 5, 'menu_icon' => 'dashicons-media-text', 'show_in_admin_bar' => true, 'show_in_nav_menus' => true, 'can_export' => true, 'has_archive' => true, 'exclude_from_search' => false, 'publicly_queryable' => true, 'capability_type' => 'post', 'show_in_rest' => true, ); register_post_type( 'oferta', $args ); } add_action( 'init', 'oferta', 0 );