所以我使用WordPress插件样板并尝试删除我的插件的精简版本,然后继续激活我的新插件。但由于某种原因,这段代码根本无法执行。我在下面列举了一个我想要做的事情的例子:
class Wp_Content_Calendar_Activator {
/**
* Short Description. (use period)
*
* Long Description.
*
* @since 1.0.0
*/
public static function activate() {
if( is_plugin_active('hello.php') ){
deactivate_plugins('hello.php');
}
}
}