Skip to content

Instantly share code, notes, and snippets.

@greatislander
Last active October 3, 2016 13:57
Show Gist options
  • Save greatislander/403f63ae466a166255c65d9e4e3edd20 to your computer and use it in GitHub Desktop.
Save greatislander/403f63ae466a166255c65d9e4e3edd20 to your computer and use it in GitHub Desktop.
<?php
// Check for the Pressbooks plugin.
if ( ! @include_once( WP_PLUGIN_DIR . '/pressbooks/compatibility.php' ) ) {
add_action( 'admin_notices', function () {
echo '<div id="message" class="error fade"><p>' . __( 'Cannot find Pressbooks install.', 'pressbooks' ) . '</p></div>';
} );
return;
} elseif ( ! pb_meets_minimum_requirements() ) {
return;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment