Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created April 29, 2014 18: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 jchristopher/11408704 to your computer and use it in GitHub Desktop.
Save jchristopher/11408704 to your computer and use it in GitHub Desktop.
<?php
function my_admin_notices() {
$success = true;
if( $success ) {
?>
<div class="updated">
<p><?php _e( '<strong>SUCCESS</strong> Success!', 'mytextdomain' ); ?></p>
</div>
<?php
} else {
?>
<div class="error">
<p><?php _e( '<strong>ERROR</strong> Error!', 'mytextdomain' ); ?></p>
</div>
<?php
}
}
add_action( 'admin_notices', 'my_admin_notices' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment