Skip to content

Instantly share code, notes, and snippets.

@wpmu-authors
Created February 5, 2021 13:28
Show Gist options
  • Save wpmu-authors/908c9e99fc7e32b55a4cb81c1af79931 to your computer and use it in GitHub Desktop.
Save wpmu-authors/908c9e99fc7e32b55a4cb81c1af79931 to your computer and use it in GitHub Desktop.
simple-notice.php
function my_error_notice() {
?>
<div class="error notice">
<p><?php _e( 'There has been an error. Bummer!', 'my_plugin_textdomain' ); ?></p>
</div>
<?php
}
add_action( 'admin_notices', 'my_error_notice' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment