Destinace
// Register Custom Post Type
function destinace_post_type() {
$labels = array(
'name' => _x( 'Destinace', 'Post Type General Name', 'text_domain' ),
'singular_name' => _x( 'Destinace', 'Post Type Singular Name', 'text_domain' ),
'menu_name' => __( 'Destinace', 'text_domain' ),
'name_admin_bar' => __( 'Destinace', 'text_domain' ),
'archives' => __( 'Archív destinací', 'text_domain' ),
'attributes' => __( 'Vlatnosti destinací', 'text_domain' ),
'parent_item_colon' => __( 'Rodičovská destinace', 'text_domain' ),
'all_items' => __( 'Všechny destinace', 'text_domain' ),
'add_new_item' => __( 'Přidat novou destinaci', 'text_domain' ),
'add_new' => __( 'Přidat novou destinace', 'text_domain' ),
'new_item' => __( 'Nová destinace', 'text_domain' ),
'edit_item' => __( 'Editovat destinaci', 'text_domain' ),
'update_item' => __( 'Upravit destinaci', 'text_domain' ),
'view_item' => __( 'Prohlédnout destinaci', 'text_domain' ),
'view_items' => __( 'Prohlédnout destinace', 'text_domain' ),
'search_items' => __( 'Hledat destinaci', 'text_domain' ),
'not_found' => __( 'Nenalezeno', 'text_domain' ),
'not_found_in_trash' => __( 'Nenalezeno v koši', 'text_domain' ),
'featured_image' => __( 'Hlavní obrázek', 'text_domain' ),
'set_featured_image' => __( 'Nastavit hlavní obrázek', 'text_domain' ),
'remove_featured_image' => __( 'Odstranit hlavní obrázek', 'text_domain' ),
'use_featured_image' => __( 'Použít jako hlavní obrázek', 'text_domain' ),
'insert_into_item' => __( 'Vložit do položky', 'text_domain' ),
'uploaded_to_this_item' => __( 'Nahrát k této položce', 'text_domain' ),
'items_list' => __( 'Items list', 'text_domain' ),
'items_list_navigation' => __( 'Items list navigation', 'text_domain' ),
'filter_items_list' => __( 'Filter items list', 'text_domain' ),
);
$args = array(
'label' => __( 'Destinace', 'text_domain' ),
'description' => __( 'Destinace', 'text_domain' ),
'labels' => $labels,
'supports' => array( 'title', 'editor', 'excerpt', 'thumbnail', ),
'taxonomies' => array( 'category', 'post_tag' ),
'hierarchical' => false,
'public' => true,
'show_ui' => true,
'show_in_menu' => true,
'menu_position' => 5,
'menu_icon' => 'dashicons-palmtree',
'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' => 'page',
);
register_post_type( 'destinace', $args );
}
add_action( 'init', 'destinace_post_type', 0 );