Advertisement
Guest User

Untitled

a guest
Nov 25th, 2015
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. <?php
  2. add_action( 'init', 'create_my_post_types' );
  3. function create_my_post_types() {
  4. register_post_type(
  5. 'movie',
  6. array(
  7. 'public' => true,
  8. 'capability_type' => 'movie',
  9. 'capabilities' => array(
  10. 'publish_posts' => 'publish_movies',
  11. 'edit_posts' => 'edit_movies',
  12. 'edit_others_posts' => 'edit_others_movies',
  13. 'read_private_posts' => 'read_private_movies',
  14. 'edit_post' => 'edit_movie',
  15. 'delete_post' => 'delete_movie',
  16. 'read_post' => 'read_movie',
  17. ),
  18. )
  19. );
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement