Switch language

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




secret_salt_warning [ WordPress Function ]

secret_salt_warning ( No parameters )
Defined at:



No description yet.

Source


<?php
function secret_salt_warning() {
    if ( !
is_super_admin() )
        return;
    
$secret_keys = array( 'AUTH_KEY''SECURE_AUTH_KEY''LOGGED_IN_KEY''NONCE_KEY''AUTH_SALT''SECURE_AUTH_SALT''LOGGED_IN_SALT''NONCE_SALT' );
    
$out '';
    foreach( 
$secret_keys as $key ) {
        if ( ! 
defined$key ) )
            
$out .= "define( '$key', '" esc_htmlwp_generate_password64truetrue ) ) . "' );<br />";
    }
    if ( 
$out != '' ) {
        
$msg  __'Warning! WordPress encrypts user cookies, but you must add the following lines to <strong>wp-config.php</strong> for it to be more secure.' );
        
$msg .= '<br/>' __"Before the line <code>/* That's all, stop editing! Happy blogging. */</code> please add this code:" );
        
$msg .= "<br/><br/><code>$out</code>";

        echo 
"<div class='update-nag'>$msg</div>";
    }
}
?>

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