Create a Taxonomy
Create a new taxonomy
use PostTypes\Taxonomy;
class Genres extends Taxonomy
{
/**
* Returns the taxonomy name to register to WordPress.
*
* @return string
*/
public function name(): string
{
return 'genre';
}
}Set the slug for the Taxonomy
Register the Taxonomy to WordPress
Last updated