wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
wp_get_ability_category › WordPress Function
Seit6.9.0
Veraltetn/v
› wp_get_ability_category ( $slug )
| Parameter: |
|
| Siehe: |
|
| Gibt zurück: |
|
| Definiert in: |
|
| 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(); }