wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



rest_pre_get_setting › WordPress Filter Hooks

Da4.7.0
Deprecaton/a
apply_filters( 'rest_pre_get_setting', null, $name, $args )
Parametri: (3)
  • (mixed) $result Value to use for the requested setting. Can be a scalar matching the registered schema for the setting, or null to follow the default get_option() behavior.
    Richiesto:
  • (string) $name Setting name (as shown in REST API responses).
    Richiesto:
  • (array) $args Arguments passed to register_setting() for this setting.
    Richiesto:
Definito a:
Codex:

Filters the value of a setting recognized by the REST API.

Allow hijacking the setting value and overriding the built-in behavior by returning a non-null value. The returned value will be presented as the setting value instead.





Sorgenti

$response[ $name ] = apply_filters( 'rest_pre_get_setting', null, $name, $args );