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



wp_ability_normalize_input › WordPress Filter Hooks

Seit7.1.0
Veraltetn/v
apply_filters( 'wp_ability_normalize_input', $input, $this->name, $this )
Parameter: (3)
  • () input The normalized input data.
    Erforderlich: Ja
  • () ability_name The name of the ability.
    Erforderlich: Ja
  • () ability The ability instance.
    Erforderlich: Ja
Definiert in:
Codex:

Filters the normalized input for an ability.

Fires after `normalize_input()` has applied any default value declared in the input schema, giving plugins a chance to adjust the input before it is consumed downstream. Common uses include defaulting beyond what JSON Schema can express, prompt enrichment, and injecting caller metadata. Returning a `WP_Error` causes callers that propagate it (such as `execute()`) to halt before validation, permission checks, and the registered execute callback.




Quellcode

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