Create a Taxonomy
Last updated
use PostTypes\Taxonomy;
class Genres extends Taxonomy
{
//...
/**
* Returns the taxonomy slug.
*
* @return string
*/
public function slug(): string
{
return 'genres';
}
}// Instantiate the Genres Taxonomy class.
$genres = new Genres;
// Register the Genres Taxonomy to WordPress.
$genres->register();