| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | public function __construct() |
||
| 13 | { |
||
| 14 | new Taxonomy(self::EXAMPLE_POST_CATEGORY, PostTypes::EXAMPLE_POST_TYPE, [ |
||
| 15 | 'labels' => [ |
||
| 16 | 'name' => Translations::trans('Categories'), |
||
| 17 | 'singular_name' => Translations::trans('Category'), |
||
| 18 | ], |
||
| 19 | 'sort' => true, |
||
| 20 | 'hierarchical' => true, |
||
| 21 | ]); |
||
| 22 | } |
||
| 23 | } |
||
| 24 |