new_user_email_admin_notice [ WordPress Function ]
new_user_email_admin_notice ( No parameters )
| Defined at: |
|
Soorgelijke functies: site_admin_notice, newuser_notify_siteadmin, wp_explain_nonce, wp_redirect_admin_locations, is_user_admin
No description yet.
Source
<?php
function new_user_email_admin_notice() {
if ( strpos( $_SERVER['PHP_SELF'], 'profile.php' ) && isset( $_GET['updated'] ) && $email = get_option( get_current_user_id() . '_new_email' ) )
echo "<div class='update-nag'>" . sprintf( __( "Your email address has not been updated yet. Please check your inbox at %s for a confirmation email." ), $email['newemail'] ) . "</div>";
}
?>
Examples [ wp-snippets.com ]
Top Google zoekresultaten
- Function Reference/new user email admin notice « WordPress Codex
new_user_email_admin_notice() is located in wp-admin/includes/ms.php . See also index of Function Reference and index of Template Tags. This page is ...
codex.wordpress.org - Ticket #16063 - WordPress Trac
We'll handle theme as follows: secret_salt in network admin, ms_deprecated_blogs_file in network admin, new_user_email_admin_notice in site admin, ...
core.trac.wordpress.org - PHPXRef 0.7 : WordPress : /wp-admin/includes/ms.php source
"</div>"; 272 } 273 add_action( 'admin_notices', 'new_user_email_admin_notice' ); 274 275 /** 276 * Determines if there is any upload space left in the current ...
phpxref.ftwr.co.uk - /wp-admin/includes/ms.php source - PHP Cross Reference ...
Jun 1, 2011 ... "</div>"; 304 } 305 add_action( 'admin_notices', 'new_user_email_admin_notice' ); 306 307 function get_site_allowed_themes() { 308 ...
xref.yoast.com