Advertisement
Guest User

Untitled

a guest
Jul 24th, 2012
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. add_filter('piklist_taxonomies', 'piklist_specialty_taxonomies');
  2. function piklist_specialty_taxonomies($taxonomies)
  3. {
  4. $taxonomies[] = array(
  5. 'post_type' => 'provider'
  6. ,'name' => 'specialty'
  7. ,'configuration' => array(
  8. 'hierarchical' => true
  9. ,'labels' => piklist('taxonomy_labels', 'Specialty')
  10. ,'show_ui' => true
  11. ,'query_var' => true
  12. ,'rewrite' => array(
  13. 'slug' => 'specialty'
  14. )
  15. ,'hide_meta_box' => true
  16. )
  17. );
  18.  
  19. return $taxonomies;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement