Is there a way to prevent WordPress from activating a plugin, when I click "Activate", and PHP or WP have the wrong versions?
Prevent WordPress plugin activation on wrong versions of PHP or WP
823 Views Asked by Marian At
2
Is there a way to prevent WordPress from activating a plugin, when I click "Activate", and PHP or WP have the wrong versions?
There is a global variable
$wp_version
or you could useget_bloginfo('version')
to get the WordPress version. You could also use theversion_compare(...)
PHP function for PHP version comparison where both verifications could be evaluated in your plugin activation function.