Advertisement
Guest User

Untitled

a guest
Jul 21st, 2011
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.42 KB | None | 0 0
  1. public function createPostType()
  2. {
  3.    register_post_type('ta_single', array(
  4.       'rewrite'       => array('slug' => 'base/%name_of_the_taxonomy%/', 'with_front' => false),
  5.    ));
  6.        
  7.    register_taxonomy('ta_category', 'ta_single', array(
  8.       'hierarchical'     => true,
  9.       'rewrite'      => array(
  10.          'slug'          => 'base',
  11.      'with_front'=> false,
  12.       ),
  13.       'show_in_nav_menus'  => true,
  14.    ));
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement