1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
<?php
defined( 'ABSPATH' ) or die( 'No script kiddies please!' );
if (!function_exists('rml_skip_rest_admin_notice')) {
function rml_skip_rest_admin_notice() {
if (current_user_can('install_plugins')) {
extract(get_plugin_data(RML_FILE, true, false));
global $wp_version;
echo '<div class=\'notice notice-error\'>
<p><strong>' . $Name . '</strong> could not be initialized because you are running WordPress < 4.7 (' . $wp_version . '). If WordPress < 4.7 the plugin needs another plugin <strong>WordPress REST API (Version 2)</strong> to provide needed functionality.
<a href="' . admin_url('plugin-install.php?s=WordPress+REST+API+(Version+2)&tab=search&type=term') . '">Show in plugin finder</a> or
<a href="' . admin_url('plugin-install.php?tab=plugin-information&plugin=rest-api&TB_iframe=true') . '">install plugin directly</a>.
</div>';
}
}
}
add_action('admin_notices', 'rml_skip_rest_admin_notice');