dev-master
9999999-dev https://github.com/stuttter/wp-term-visibilityVisibility for categories, tags, and other taxonomy terms
GPLv2 or later GPL-2.0-or-later
The Requires
- php >=5.2
- composer/installers ^1.0
by John James Jacoby
Wallogit.com
2017 © Pedro Peláez
Visibility for categories, tags, and other taxonomy terms
Visibility for categories, tags, and other taxonomy terms, (*1)
WP Term Visibility allows users to assign a visibility to any category, tag, or taxonomy term using a dropdown, providing customized functionality for taxonomy terms., (*2)
Not since WordPress 4.4., (*3)
Install the WP Term Meta plugin if you're on an earlier version., (*4)
No. There are no new database tables with this plugin., (*5)
No. All of WordPress's core database tables remain untouched., (*6)
visibility?Yes. Use a meta_query like:, (*7)
$terms = get_terms( 'category', array(
'depth' => 1,
'number' => 100,
'parent' => 0,
'hide_empty' => false,
// Query by visibility using the "wp-term-meta" plugin!
'meta_query' => array( array(
'key' => 'visibility',
'value' => 'private'
) )
) );
The WordPress support forums: https://wordpress.org/support/plugin/wp-term-visibility/, (*8)
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!, (*9)
Visibility for categories, tags, and other taxonomy terms
GPLv2 or later GPL-2.0-or-later