Last active
November 15, 2018 19:10
-
-
Save RiodeJaneiroo/84f7f19fa7523d849491e5babc029650 to your computer and use it in GitHub Desktop.
[Wordpress CPT - reviews ] Register custom post type - Reviews #wordpress #cpt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action('init', 'mp_register_reviews'); | |
function mp_register_reviews(){ | |
register_post_type('reviews', array( | |
'labels' => array( | |
'name' => 'Отзывы', // Основное название типа записи | |
'singular_name' => 'Отзыв', // отдельное название записи типа Book | |
'add_new' => 'Добавить новый отзыв', | |
'add_new_item' => 'Добавить новый отзыв', | |
'edit_item' => 'Редактировать отзыв', | |
'new_item' => 'Новый отзыв', | |
'view_item' => 'Посмотреть отзыв', | |
'search_items' => 'Найти отзыв', | |
'not_found' => 'Отзывов не найдено', | |
'not_found_in_trash' => 'В корзине отзывов не найдено', | |
'parent_item_colon' => '', | |
'menu_name' => 'Отзывы' | |
), | |
'menu_icon' => 'dashicons-format-status', | |
'public' => false, | |
'show_ui' => true, | |
'rewrite' => false, | |
'capability_type' => 'post', | |
'hierarchical' => false, | |
'supports' => array('title','editor','thumbnail') | |
) ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment