Guest User

Untitled

a guest
Jan 19th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. register_taxonomy(
  2. "Category",
  3. array(
  4. "links"
  5. ),
  6. array(
  7. "hierarchical" => true,
  8. "label" => "Category",
  9. "singular_label" => "Category",
  10. "rewrite" => true
  11. )
  12. );
  13.  
  14. register_taxonomy(
  15. "Tags",
  16. array(
  17. "links"
  18. ),
  19. array(
  20. "hirearchical" => true,
  21. "label" => "Tags",
  22. "singular_label" => "Tag",
  23. "rewrite" => true
  24. )
  25. );
Add Comment
Please, Sign In to add comment