Advertisement
Guest User

Untitled

a guest
Sep 14th, 2015
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. <?php
  2.  
  3. add_action('init', 'pikuseru_podio_cases');
  4.  
  5. function pikuseru_podio_cases() {
  6. register_post_type('cases',
  7. array(
  8. 'labels' => array(
  9. 'name' => 'Cases',
  10. 'singular_name' => 'Case',
  11. ),
  12. 'rewrite' => array(
  13. 'slug' => 'cases',
  14. 'with_front' => false
  15. ),
  16. 'public' => true
  17. )
  18. );
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement