wpseek.com
A WordPress-centric search engine for devs and theme authors
add_allowed_options › WordPress Function
Since5.5.0
Deprecatedn/a
› add_allowed_options ( $new_options, $options = '' )
Parameters: (2) |
|
Returns: |
|
Defined at: |
|
Codex: |
Adds an array of options to the list of allowed options.
Related Functions: remove_allowed_options, add_blog_option, add_site_option, wp_load_alloptions, add_option
Source
function add_allowed_options( $new_options, $options = '' ) {
if ( '' === $options ) {
global $allowed_options;
} else {
$allowed_options = $options;
}
foreach ( $new_options as $page => $keys ) {
foreach ( $keys as $key ) {
if ( ! isset( $allowed_options[ $page ] ) || ! is_array( $allowed_options[ $page ] ) ) {
$allowed_options[ $page ] = array();
$allowed_options[ $page ][] = $key;
} else {
$pos = array_search( $key, $allowed_options[ $page ], true );
if ( false === $pos ) {
$allowed_options[ $page ][] = $key;
}
}
}
}
return $allowed_options;
}