Switch language

wpseek.com
A WordPress-centric search engine for devs and theme authors




add_option_whitelist [ WordPress Function ]

add_option_whitelist ( $new_options, $options = '' )
Parameters:
  • (unknown_type) $new_options
  • (unknown_type) $options
Returns:
  • (unknown)
Defined at:



{@internal Missing Short Description}}

Source


<?php
function add_option_whitelist$new_options$options '' ) {
    if ( 
$options == '' )
        global 
$whitelist_options;
    else
        
$whitelist_options $options;

    foreach ( 
$new_options as $page => $keys ) {
        foreach ( 
$keys as $key ) {
            if ( !isset(
$whitelist_options$page ]) || !is_array($whitelist_options$page ]) ) {
                
$whitelist_options$page ] = array();
                
$whitelist_options$page ][] = $key;
            } else {
                
$pos array_search$key$whitelist_options$page ] );
                if ( 
$pos === false )
                    
$whitelist_options$page ][] = $key;
            }
        }
    }

    return 
$whitelist_options;
}
?>

Examples [ wp-snippets.com ]

Top Google zoekresultaten

Meer ...

Gebruikersdiscussies [ wordpress.org ]

0 User Note(s)

Nog geen één. Wees de eerste!

Nieuw toevoegen ...



HTML5 Powered with CSS3 / Styling, Performance & Integration, and Semantics