wordpress怎么隐藏插件代码
发布网友
发布时间:2022-05-18 21:08
我来回答
共1个回答
热心网友
时间:2023-11-03 23:58
将下面的代码添加到主题的 functions.php 即可:
/**
* 隐藏核心更新提示 WP 3.0+
* 来自 http://wordpress.org/plugins/disable-wordpress-core-update/
*/
add_filter( 'pre_site_transient_update_core', create_function( '$a', "return null;" ) );
/**
* 隐藏插件更新提示 WP 3.0+
* 来自 http://wordpress.org/plugins/disable-wordpress-plugin-updates/
*/
remove_action( 'load-update-core.php', 'wp_update_plugins' );
add_filter( 'pre_site_transient_update_plugins', create_function( '$b', "return null;" ) );
/**
* 隐藏主题更新提示 WP 3.0+
* 来自 http://wordpress.org/plugins/disable-wordpress-theme-updates/
*/
remove_action( 'load-update-core.php', 'wp_update_themes' );
add_filter( 'pre_site_transient_update_themes', create_function( '$c', "return null;" ) );
以上代码仅支持 WP 3.0+ 版本,如果你使用的是3.0以前的WordPress,请下载代码中提到的插件。