wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_ability_execute_result › WordPress Filter Hooks

Seit7.1.0
Veraltetn/v
apply_filters( 'wp_ability_execute_result', $result, $this->name, $input, $this )
Parameter: (4)
  • () result The result returned by the registered `execute_callback`, or a `WP_Error` if execution failed.
    Erforderlich: Ja
  • () ability_name The name of the ability.
    Erforderlich: Ja
  • () input The normalized input data.
    Erforderlich: Ja
  • () ability The ability instance.
    Erforderlich: Ja
Definiert in:
Codex:

Filters the result returned by an ability's execute callback.

Fires after the registered execute callback runs. Plugins can use this to transform the result — response formatting, stripping internal metadata, content safety filtering, response enrichment, or recovering from a failure by returning a successful value. The filter receives whatever the registered callback produced, including a `WP_Error` if execution failed. Filters may pass the `WP_Error` through unchanged, override it with a recovered result, or convert a successful result into a `WP_Error`.




Quellcode

return apply_filters( 'wp_ability_execute_result', $result, $this->name, $input, $this );