wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



rest_pre_get_setting › Filtr WordPress Hooks

Od4.7.0
Przestarzałyn/a
apply_filters( 'rest_pre_get_setting', null, $name, $args )
Parametry: (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.
    Wymagane: Tak
  • (string) $name Setting name (as shown in REST API responses).
    Wymagane: Tak
  • (array) $args Arguments passed to register_setting() for this setting.
    Wymagane: Tak
Zdefiniowane na:
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.





Źródło

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