Viper007Bond

Untitled

Mar 15th, 2012
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.36 KB | None | 0 0
  1. <?php
  2.  
  3. add_action( 'init', 'kaolti_register_taxonomy' );
  4.  
  5. function kaolti_register_taxonomy() {
  6.  
  7.     register_taxonomy( 'kaolti_hardware', array( 'post' ), array(
  8.         'labels' => array(
  9.             'name' => 'Hardware Types',
  10.             // You can add more label types here, see docs
  11.         ),
  12.         'hierarchical' => true,
  13.         'rewrite' => array(
  14.             'slug' => 'hardware',
  15.         ),
  16.     ) );
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment