Define Post Types
use PostTypes\Taxonomy;
class Genres extends Taxonomy
{
//...
/**
* Returns post types attached to the Genres taxonomy.
*
* @return array
*/
public function posttypes(): array
{
return [
'post',
'books',
];
}
}Last updated