示例#1
0
 /**
  * Get category name.
  *
  * @return string
  */
 public function getCategoryName()
 {
     if ($this->get('category_id')) {
         $category = new AB_Category();
         $category->load($this->get('category_id'));
         return $category->get('name');
     }
     return __('Uncategorized', 'bookly');
 }