Advertisement
Guest User

Untitled

a guest
Jan 29th, 2015
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. add_action('admin_notices', 'admin_notice_check_authentication_keys_and_salts');
  2.  
  3. function admin_notice_check_authentication_keys_and_salts() {
  4. if (AUTH_KEY == 'put your unique phrase here') {
  5. echo ' <div class= "error" ><p>Your Authentication Unique keys and salts are still set to their default values in wp-config.php.</p></div>';
  6. }
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement