option_update_filter( array $options )

Refreshes the value of the options whitelist available via the ‘whitelist_options’ hook.


Description

See the ‘whitelist_options’ filter.


Parameters

$options

(array) (Required)


Return

(array)


Source

File: wp-admin/includes/plugin.php

function option_update_filter( $options ) {
	global $new_whitelist_options;

	if ( is_array( $new_whitelist_options ) )
		$options = add_option_whitelist( $new_whitelist_options, $options );

	return $options;
}


Changelog

Changelog
Version Description
WP-2.7.0 Introduced.