我想只在我的网络主页上使用插件。以下是我的问题的相反情况:wordpress.stackexchange.com
解决方案如下:
add_filter(\'site_option_active_sitewide_plugins\', \'modify_sitewide_plugins\');
function modify_sitewide_plugins($value) {
global $current_blog;
if( $current_blog->blog_id == 2 ) {
unset($value[\'akismet/akismet.php\']);
}
return $value;
}
如何修改这段代码,除了在$current\\u博客上,每个子网站上都应该禁用$value插件(在后续网站上也会自动禁用)?