Guest User

Untitled

a guest
Jan 22nd, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. /*--------------- Register post type --------------------*/
  2. function create_post_type() {
  3. //Register post type Team
  4. register_post_type( 'team',
  5. array(
  6. 'labels' => array(
  7. 'name' => __( 'Team' ),
  8. 'singular_name' => __( 'Team-member' ),
  9. 'add_new' => __('Add team-member'),
  10. ),
  11. 'public' => true,
  12. 'has_archive' => true,
  13. 'menu_icon' => 'dashicons-businessman',
  14. 'supports' => array('title','editor', 'thumbnail', 'custom-fields', 'page-attributes'),
  15. )
  16. );
  17. //there you can create next post types ...
  18. }
  19. add_action( 'init', 'create_post_type' );
  20. /*--------------- /Register post type --------------------*/
Add Comment
Please, Sign In to add comment