Prevent WordPress plugin activation on wrong versions of PHP or WP

823 Views Asked by At

Is there a way to prevent WordPress from activating a plugin, when I click "Activate", and PHP or WP have the wrong versions?

2

There are 2 best solutions below

3
On

There is a global variable $wp_version or you could use get_bloginfo('version') to get the WordPress version. You could also use the version_compare(...) PHP function for PHP version comparison where both verifications could be evaluated in your plugin activation function.

2
On
   <?php
   register_activation_hook( __FILE__, 'bh_proljece_boj_install' );
   function bh_proljece_boj_install() 
   {
       if ( version_compare( get_bloginfo( 'version' ), '3.3', ' < ' ) ) 
       {
           deactivate_plugins( basename( __FILE__ ) ); // Deactivate our plugin
       }
   }
   ?>