wpseek.com
A WordPress-centric search engine for devs and theme authors
default_password_nag_handler › WordPress Function
Since2.8.0
Deprecatedn/a
› default_password_nag_handler ( $errors = false )
Parameters: |
|
Defined at: |
|
Codex: |
No description yet.
Source
function default_password_nag_handler( $errors = false ) { global $user_ID; // Short-circuit it. if ( ! get_user_option( 'default_password_nag' ) ) { return; } // get_user_setting() = JS-saved UI setting. Else no-js-fallback code. if ( 'hide' === get_user_setting( 'default_password_nag' ) || isset( $_GET['default_password_nag'] ) && '0' === $_GET['default_password_nag'] ) { delete_user_setting( 'default_password_nag' ); update_user_meta( $user_ID, 'default_password_nag', false ); } }