moxie-lean / wp-taxonomy
wp-taxonomy
Installs: 17 724
Dependents: 1
Suggesters: 0
Security: 0
Stars: 2
Watchers: 15
Forks: 0
Open Issues: 2
Requires
- php: >=7.4 || 8.0
Requires (Dev)
This package is auto-updated.
Last update: 2024-10-22 09:05:19 UTC
README
This library will allow you to easily create custom taxonomies
Installation
The easiest way to install this package is by using composer from your terminal:
composer require moxie-lean/wp-taxonomy
Or 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';
Using wp-taxonomy
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();