stuttter/wp-term-families

Families for categories, tags, and other taxonomy terms

Installs: 11

Dependents: 0

Suggesters: 0

Security: 0

Stars: 15

Watchers: 1

Forks: 4

Open Issues: 1

Type:wordpress-plugin

0.2.0 2016-01-07 22:49 UTC

This package is auto-updated.

Last update: 2024-04-20 10:32:31 UTC


README

Family for categories, tags, and other taxonomy terms

WP Term Family allows users to assign a Family to any category, tag, or taxonomy term using a dropdown, providing customized functionality for taxonomy terms.

Installation

  • Download and install using the built in WordPress plugin installer.
  • Activate in the "Plugins" area of your admin by clicking the "Activate" link.
  • No further setup or configuration is necessary.

FAQ

Does this plugin depend on any others?

Not since WordPress 4.4.

Install the WP Term Meta plugin if you're on an earlier version.

Does this create new database tables?

No. There are no new database tables with this plugin.

Does this modify existing database tables?

No. All of WordPress's core database tables remain untouched.

Can I query for terms by their Family?

Yes. Use a meta_query like:

$terms = get_terms( 'category', array(
	'depth'      => 1,
	'number'     => 100,
	'parent'     => 0,
	'hide_empty' => false,

	// Query by family using the "wp-term-meta" plugin!
	'meta_query' => array( array(
		'key'   => 'family',
		'value' => 'private'
	) )
) );

Where can I get support?

The WordPress support forums: https://wordpress.org/support/plugin/wp-term-family/

Can I contribute?

Yes, please! The number of users needing more robust taxonomy terms is growing fast. Having an easy-to-use UI and powerful set of functions is critical to managing complex WordPress installations. If this is your thing, please help us out!