コード例 #1
0
 /**
  * ********************************TAXONOMY*********************************
  */
 public function categories()
 {
     $cat = new cwp_taxonomy('product_category', 'Product Department');
     $cat->set_post_types($this->get_post_types());
     $cat->register();
 }
コード例 #2
0
 /**
  * ********************************TAXONOMY*********************************
  */
 public static function categories($name, $type)
 {
     $cat = new cwp_taxonomy($name . '_category', ucfirst($name) . ' Category');
     $cat->set_post_types($type);
     $cat->register();
 }