Guest User

Untitled

a guest
Mar 19th, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. function marches_CPT() {
  2.  
  3. // Post Type
  4. $labels = array(
  5. 'name' => 'Marchés',
  6. 'all_items' => 'Tous les marchés',
  7. 'singular_name' => 'Marché',
  8. 'add_new_item' => 'Ajouter un camping',
  9. 'edit_item' => "Modifier le marché",
  10. 'menu_name' => 'Be | Marchés'
  11. );
  12.  
  13. $args = array(
  14. 'labels' => $labels,
  15. 'public' => true,
  16. 'has_archive' => true,
  17. 'capability_type' => 'page',
  18.  
  19. register_post_type('marche',$args);
  20.  
  21. }
  22.  
  23. add_action('init', 'marches_CPT', '0');
Add Comment
Please, Sign In to add comment