Skip to content

Instantly share code, notes, and snippets.

@grola
Created January 15, 2019 12:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save grola/a71c7fab1370611eb1bb406842c676cc to your computer and use it in GitHub Desktop.
Save grola/a71c7fab1370611eb1bb406842c676cc to your computer and use it in GitHub Desktop.
Conditional notice
<?php
function wpdesk_info_notice_for_administrator() {
$user = wp_get current_user();
if ( in_array( 'administrator', $user->roles ) ) {
?>
<div class="notice notice-info">
<p>Info notice for administrator.</p>
</div>
<?php
}
}
add_action( 'admin_notices', 'wpdesk_info_notice_for administrator' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment