An open API service indexing awesome lists of open source software.

https://github.com/webdevstudios/taxonomy_core

A tool to make custom taxonomy registration just a bit simpler. Automatically registers taxonomy labels, and provides helpful methods.
https://github.com/webdevstudios/taxonomy_core

Last synced: about 1 year ago
JSON representation

A tool to make custom taxonomy registration just a bit simpler. Automatically registers taxonomy labels, and provides helpful methods.

Awesome Lists containing this project

README

          

Taxonomy_Core
=========

A tool to make custom taxonomy registration just a bit simpler. Automatically registers taxonomy labels, and provides helpful methods.

Also see [CPT_Core](https://github.com/jtsternberg/CPT_Core).

WebDevStudios. WordPress for big brands.

#### Example Usage:
```php
get_args();

// Outputs 'film-actress', the taxonomoy registration name/slug
$actress_slug = $actresses->taxonomy();

// Outputs 'Actresses'
$actress_plural = $actresses->taxonomy( 'plural' );

// Outputs 'Actress'
$actress_singular = $actresses->taxonomy( 'singular' );