PHPackages                             wpify/taxonomy - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. wpify/taxonomy

AbandonedLibrary[Utility &amp; Helpers](/categories/utility)

wpify/taxonomy
==============

WPify Taxonomy

1.0.0(4y ago)011.2k↑38.9%GPL-2.0-or-laterPHP

Since Sep 8Pushed 2y ago1 watchersCompare

[ Source](https://github.com/wpify/taxonomy)[ Packagist](https://packagist.org/packages/wpify/taxonomy)[ RSS](/packages/wpify-taxonomy/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (2)Used By (0)

WPify Taxonomy
==============

[](#wpify-taxonomy)

Abstraction over WordPress Taxonomies.

Installation
------------

[](#installation)

`composer require wpify/taxonomy`

Usage
-----

[](#usage)

```
class MyCustomTaxonomy extends Wpify\Taxonomy\AbstractCustomTaxonomy {
    const KEY = 'my-custom-taxonomy';

    public function setup() {
        add_action( 'init', array( $this, 'do_something' ) );
    }

	public function get_taxonomy_key(): string {
		return self::KEY;
	}

	public function get_args(): array {
		$singular = _x( 'My Taxonomy', 'post type singular name', 'my-plugin' );
		$plural   = _x( 'My Taxonomies', 'post type name', 'my-plugin' );

		return array(
			'labels'            => $this->generate_labels( $singular, $plural ),
			'description'       => __( 'My custom taxonomy', 'my-plugin' ),
			'public'            => true,
			'hierarchical'      => false,
			'show_in_rest'      => true,
			'show_admin_column' => true,
		);
	}

    public function get_post_types(): array {
		return array( 'my-custom-post-type', 'page' );
	}

    public function do_something() {
        // TODO: Do something
    }
}

function my_plugin_init() {
    new MyCustomTaxonomy;
}

add_action( 'plugins_loaded', 'my_plugin_init', 11 );
```

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity24

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity50

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

1713d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/b322ef9c319c869892c6dcf05296386fa00fc53516df65e438d1cbb72ec3b7ee?d=identicon)[mejta](/maintainers/mejta)

![](https://www.gravatar.com/avatar/92d6ba0cde4324b12697fe98421d2430b68bff0a981225d42b103fb53dea16f5?d=identicon)[vasikgreif](/maintainers/vasikgreif)

---

Top Contributors

[![mejta](https://avatars.githubusercontent.com/u/498441?v=4)](https://github.com/mejta "mejta (2 commits)")

### Embed Badge

![Health badge](/badges/wpify-taxonomy/health.svg)

```
[![Health](https://phpackages.com/badges/wpify-taxonomy/health.svg)](https://phpackages.com/packages/wpify-taxonomy)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
