Define taxonomies
use PostTypes\PostType;
class Books extends PostType
{
//...
/**
* Returns taxonomies attached to the Books post type.
*
* @return array
*/
public function taxonomies(): array
{
return [
'category',
'genre',
];
}
}Last updated