Created
January 15, 2019 12:50
-
-
Save grola/ca53c5b255adadf28cee5be4198b77f1 to your computer and use it in GitHub Desktop.
Dismissible notice
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function wpdesk_dismisible_info_notice_for_administrator() { | |
$user = wp_get current_user(); | |
if ( in_array( 'administrator', $user->roles ) ) { | |
?> | |
<div class="notice notice-info is-dismissible"> | |
<p>Info notice for administrator.</p> | |
</div> | |
<?php | |
} | |
} | |
add_action( 'admin notices', 'wpdesk_dismisible_info_notice_for_administrator' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment