Skip to content

Instantly share code, notes, and snippets.

@maurisrx
Last active August 29, 2015 14:17
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 maurisrx/df7c38e325913ae29306 to your computer and use it in GitHub Desktop.
Save maurisrx/df7c38e325913ae29306 to your computer and use it in GitHub Desktop.
2nd snippet in post "How to Check Whether Other WordPress Plugin is Active or Not"
function prfx_admin_notice() {
ob_start();
?>
<div class="error">
<p><?php _e( 'Easy Digital Downloads plugin is required to activate EDD sales number extension plugin. Please install and activate it first.' ); ?></p>
</div>
<?php
echo ob_get_clean();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment