Define Options
use PostTypes\Taxonomy;
class Genres extends Taxonomy
{
//...
/**
* Returns the options for the Genres taxonomy.
*
* @return array
*/
public function options(): array
{
return [
'public' => true,
'hierarchical' => true,
];
}
}Last updated