Advertisement
Guest User

Untitled

a guest
Apr 30th, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. register_post_type('my_custom_post', array(
  2. 'labels' => array(
  3. 'name' => __('custom name', 'my_custom_post'),
  4. 'singular_name' => __('custom name', 'my_custom_post'),
  5. ),
  6. 'public' => true,
  7. 'has_archive' => true,
  8. 'show_ui' => true,
  9. 'capabilities' => array(
  10. 'edit_post' => 'read',
  11. 'read_post' => 'read',
  12. 'delete_post' => 'read',
  13. 'edit_posts' => 'read',
  14. 'edit_others_posts' => 'manage_options',
  15. 'publish_posts' => 'read',
  16. 'read_private_posts' => 'manage_options',
  17. 'create_posts' => 'read',
  18. )
  19. ));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement