wpseek.com
A WordPress-centric search engine for devs and theme authors
wp_has_ability › WordPress Function
Since6.9.0
Deprecatedn/a
› wp_has_ability ( $name )
| Parameters: |
|
| See: |
|
| Returns: |
|
| Defined at: |
|
| Codex: |
Checks if an ability is registered.
Use this for conditional logic and feature detection before attempting to retrieve or use an ability. Example: // Displays different UI based on available abilities. if ( wp_has_ability( 'premium-plugin/advanced-export' ) ) { echo 'Export with Premium Features'; } else { echo 'Basic Export'; }Related Functions: wp_get_ability, wp_has_ability_category, wp_register_ability, wp_unregister_ability, wp_get_abilities