Guest User

Untitled

a guest
Jan 23rd, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 KB | None | 0 0
  1. add_action('init', 'kits_custom_post_type');
  2. function kits_custom_post_type(){
  3. register_post_type('kits', array(
  4. 'labels' => array(
  5. 'name' => 'Комплекты', // Основное название типа записи
  6. 'singular_name' => 'Комплект', // отдельное название записи типа Book
  7. 'add_new' => 'Добавить новый',
  8. 'add_new_item' => 'Добавить новый комплект',
  9. 'edit_item' => 'Редактировать комплект',
  10. 'new_item' => 'Новый комплект',
  11. 'view_item' => 'Посмотреть комплект',
  12. 'search_items' => 'Найти комплект',
  13. 'not_found' => 'Комплектов не найдено',
  14. 'not_found_in_trash' => 'В корзине комплектов не найдено',
  15. 'parent_item_colon' => '',
  16. 'menu_name' => 'Комплекты'
  17.  
  18. ),
  19. 'public' => true,
  20. 'publicly_queryable' => true,
  21. 'show_ui' => true,
  22. 'show_in_menu' => true,
  23. 'query_var' => true,
  24. 'rewrite' => true,
  25. 'capability_type' => 'post',
  26. 'has_archive' => true,
  27. 'hierarchical' => false,
  28. 'menu_position' => null,
  29. 'supports' => array('title','editor','author','thumbnail','excerpt','comments')
  30. ) );
  31. }
Add Comment
Please, Sign In to add comment