remove_allowed_options

函数
remove_allowed_options ( $del_options, $options = '' )
参数
  • (array) $del_options
    Required:
  • (string|array) $options
    Required:
    Default: (empty)
返回值
  • (array)
定义位置
相关方法
remove_all_actionsadd_allowed_optionsremove_actionget_alloptionsremove_all_filters
引入
5.5.0
弃用
-

remove_allowed_options: 这个函数用于从允许的选项列表中删除一个或多个选项。这个列表是用来确定哪些选项可以使用update_option函数来更新。

从允许的选项列表中删除一个选项列表。

function remove_allowed_options( $del_options, $options = '' ) {
	if ( '' === $options ) {
		global $allowed_options;
	} else {
		$allowed_options = $options;
	}

	foreach ( $del_options as $page => $keys ) {
		foreach ( $keys as $key ) {
			if ( isset( $allowed_options[ $page ] ) && is_array( $allowed_options[ $page ] ) ) {
				$pos = array_search( $key, $allowed_options[ $page ], true );
				if ( false !== $pos ) {
					unset( $allowed_options[ $page ][ $pos ] );
				}
			}
		}
	}

	return $allowed_options;
}

常见问题

FAQs
查看更多 >