moxie-lean/wp-taxonomy

1.0.6 2021-12-16 05:13 UTC

This package is auto-updated.

Last update: 2024-04-22 07:48:51 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();