Guest User

Untitled

a guest
Apr 23rd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. register_extended_post_type('contact',
  2. [
  3. 'menu_icon' => 'dashicons-media-text',
  4. 'supports' => [ 'page-attributes', 'title', 'slug']
  5. ],
  6. [
  7. # Override the base names used for labels:
  8. 'singular' => 'contact',
  9. 'plural' => 'Contacts',
  10. 'slug' => 'contact'
  11. ]
  12. );
  13.  
  14. register_extended_taxonomy( 'group', 'contact', array(), array(
  15. 'plural' => 'Groups',
  16. 'slug' => 'group'
  17. )
  18. );
  19.  
  20. register_extended_taxonomy( 'region', 'contact', array(), array(
  21. 'plural' => 'Regions',
  22. 'slug' => 'region'
  23. )
  24. );
Add Comment
Please, Sign In to add comment