当插件被网络激活或为单个站点激活时,回调函数应该运行。无论哪种方式,它都应该起作用。
但是,如果您打算为网络中的每个博客运行回调中包含的代码,那么请注意,这不会在开箱即用的情况下发生,相反,回调中的代码将在主博客上下文中。
如果您的代码需要在网络激活时在每个博客上运行:
function my_plugin_activate($network_wide) {
if ( is_multisite() && $network_wide ) {
foreach (get_sites([\'fields\'=>\'ids\']) as $blog_id) {
switch_to_blog($blog_id);
//do your specific thing here...
restore_current_blog();
}
} else {
//run in single site context
}
}
register_activation_hook( __FILE__, \'my_plugin_activate\' );
如果创建新博客时需要运行代码:
function my_plugin_new_blog($blog_id) {
//replace with your base plugin path E.g. dirname/filename.php
if ( is_plugin_active_for_network( \'my-plugin-name-dir/my-plugin-name.php\' ) ) {
switch_to_blog($blog_id);
//do your specific thing here...
restore_current_blog();
}
}
add_action(\'wpmu_new_blog\', \'my_plugin_new_blog\');
另外:
对于那些想要类似功能的读者,但是对于所有被网络激活的插件(不只是你控制的插件,如果适用的话),那么你可能希望看看:
https://wordpress.org/plugins/proper-network-activation/ 这将确保网络激活的多站点网络中的每个插件
register_activation_hook
和
register_deactivation_hook
在每个博客上下文中运行。