Наставники
Планета талантов
// Register Custom Post Type function custom_post_type_nast() { $labels = array( 'name' => 'Наставники', 'singular_name' => 'Наставник', 'menu_name' => 'Наставники', 'name_admin_bar' => 'Наставники', 'archives' => '', 'attributes' => '', 'parent_item_colon' => '', 'all_items' => '', 'add_new_item' => 'Добавить', 'add_new' => 'Добавить наставника', 'new_item' => 'Новый', 'edit_item' => 'Редактировать', 'update_item' => 'Обновить', 'view_item' => 'Просмотр', 'view_items' => 'Посмотреть все', 'search_items' => '', 'not_found' => '', 'not_found_in_trash' => '', 'featured_image' => '', 'set_featured_image' => '', 'remove_featured_image' => '', 'use_featured_image' => '', 'insert_into_item' => '', 'uploaded_to_this_item' => '', 'items_list' => '', 'items_list_navigation' => '', 'filter_items_list' => '', ); $rewrite = array( 'slug' => 'teachers', 'with_front' => true, 'pages' => false, 'feeds' => false, ); $args = array( 'label' => 'Наставник', 'labels' => $labels, 'supports' => array( 'custom-fields' ), 'hierarchical' => false, 'public' => true, 'show_ui' => true, 'show_in_menu' => true, 'menu_position' => 5, 'menu_icon' => 'dashicons-admin-users', 'show_in_admin_bar' => true, 'show_in_nav_menus' => true, 'can_export' => true, 'has_archive' => false, 'exclude_from_search' => true, 'publicly_queryable' => true, 'rewrite' => $rewrite, 'capability_type' => 'page', ); register_post_type( 'artbt_nast', $args ); } add_action( 'init', 'custom_post_type_nast', 0 );