Skip to content

wearenolte/wp-taxonomy

Repository files navigation

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();

About

Easily Create Custom WordPress Taxonomies

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •  

Languages