Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
23 | public function __construct() |
||
24 | { |
||
25 | new Taxonomy(self::EXAMPLE_POST_CATEGORY, PostTypes::EXAMPLE_POST_TYPE, [ |
||
26 | 'labels' => [ |
||
27 | 'name' => Translations::trans('Categories'), |
||
28 | 'singular_name' => Translations::trans('Category'), |
||
29 | ], |
||
30 | 'sort' => true, |
||
31 | 'hierarchical' => true, |
||
32 | ]); |
||
33 | } |
||
34 | } |
||
35 |