default_password_nag

Definition:
function default_password_nag() {}

Source code

function default_password_nag() {

	global $pagenow;

	if ( 'profile.php' == $pagenow || ! get_user_option('default_password_nag') ) //Short circuit it.

		return;



	echo '<div class="error default-password-nag">';

	echo '<p>';

	echo '<strong>' . __('Notice:') . '</strong> ';

	_e('You&rsquo;re using the auto-generated password for your account. Would you like to change it to something easier to remember?');

	echo '</p><p>';

	printf( '<a href="%s">' . __('Yes, take me to my profile page') . '</a> | ', admin_url('profile.php') . '#password' );

	printf( '<a href="%s" id="default-password-nag-no">' . __('No thanks, do not remind me again') . '</a>', '?default_password_nag=0' );

	echo '</p></div>';

}

780

No comments yet... Be the first to leave a reply!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: