wpseek.com
A WordPress-centric search engine for devs and theme authors



wp_ability_normalize_input › WordPress Filter Hooks

Since7.1.0
Deprecatedn/a
apply_filters( 'wp_ability_normalize_input', $input, $this->name, $this )
Parameters: (3)
  • () input The normalized input data.
    Required: Yes
  • () ability_name The name of the ability.
    Required: Yes
  • () ability The ability instance.
    Required: Yes
Defined at:
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.




Source

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