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