option_update_filter

Advertisement

Summery Summery

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

Syntax Syntax

option_update_filter( array $options )

Description Description

See the ‘allowed_options’ filter.

Parameters Parameters

$options

(Required)

Return Return

(array)

Source Source

File: wp-admin/includes/plugin.php

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;
}

Advertisement

Changelog Changelog

Changelog
Version Description
5.5.0 $new_whitelist_options was renamed to $new_allowed_options. Please consider writing more inclusive code.
2.7.0 Introduced.

Advertisement

Leave a Reply