remove_option_whitelist

Definition:
function remove_option_whitelist( $del_options, $options = '' ) {}

Parameters

  • unknown_type $del_options
  • unknown_type $options

Source code

function remove_option_whitelist( $del_options, $options = '' ) {

	if ( $options == '' )

		global $whitelist_options;

	else

		$whitelist_options = $options;



	foreach ( $del_options as $page => $keys ) {

		foreach ( $keys as $key ) {

			if ( isset($whitelist_options[ $page ]) && is_array($whitelist_options[ $page ]) ) {

				$pos = array_search( $key, $whitelist_options[ $page ] );

				if ( $pos !== false )

					unset( $whitelist_options[ $page ][ $pos ] );

			}

		}

	}



	return $whitelist_options;

}

2715

No comments yet... Be the first to leave a reply!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: