This library will allow you to easily create custom taxonomies
The easiest way to install this package is by using composer from your terminal:
composer require moxie-lean/wp-taxonomyOr by adding the following lines on your composer.json file
"require": {
"moxie-lean/wp-taxonomy": "*"
}This will download the file from the packagist site and the latest version located on master branch of the repository.
After that you can need to include the autoload.php file in order to
be able to autoload the class during the object creation.
include '/vendor/autoload.php';Modeled after WP-CPT
$tax = new \Lean\Taxonomy([
'name' => 'Taxonomy Name',
'singular' => 'Single Tax',
'plural' => 'Multiple Taxes',
'slug' => 'new-taxonomy',
'objects' => [ 'cpt-one', 'cpt-two' ]
]);
$tax->init();