如何在wp-config
中使用以下代码禁用多个插件?
例如,这段代码将停止plugin.php更新,但我如何在array
中禁用多个,以便plugin.php,plugin1.php和plugin2.php也被禁用。
/* Function which remove Plugin Update Notices */
function disable_plugin_updates( $value ) {
unset( $value->response['plugin/plugin.php'] );
return $value;
}
add_filter( 'site_transient_update_plugins', 'disable_plugin_updates' );
字符串
2条答案
按热度按时间8zzbczxx1#
字符串
9q78igpj2#
上面的回答是给我的警告,应该是这样的。
字符串