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



option_update_filter › WordPress Function

Seit2.7.0
Veraltetn/v
option_update_filter ( $options )
Parameter:
  • (array) $options
    Erforderlich: Ja
Gibt zurück:
  • (array)
Definiert in:
Codex:
Changelog:
  • 5.5.0

Refreshes the value of the allowed options list available via the 'allowed_options' hook.

See the {@see 'allowed_options'} filter.


Quellcode

function option_update_filter( $options ) {
	global $new_allowed_options;

	if ( is_array( $new_allowed_options ) ) {
		$options = add_allowed_options( $new_allowed_options, $options );
	}

	return $options;
}