wpseek.com
A WordPress-centric search engine for devs and theme authors
wp_get_ability_category › WordPress Function
Since6.9.0
Deprecatedn/a
› wp_get_ability_category ( $slug )
| Parameters: |
|
| See: |
|
| Returns: |
|
| Defined at: |
|
| Codex: |
Retrieves a registered ability category.
Returns the ability category instance for inspection or use. The instance provides access to the ability category's configuration and metadata. Example: // Prints information about a registered ability category. $ability_category = wp_get_ability_category( 'content-management' ); if ( $ability_category ) { echo $ability_category->get_label() . ': ' . $ability_category->get_description(); }