WordPress在搭建一些特殊站点的时候需要移除WordPress的更新提示,但是很多都不能正常解决问题,那么WordPress如何移除程序和插件的更新提示?
只需要将下面的代码块**到主题下的 functions.php 文件中,最好连注释一起**,方便日后阅读和使用代码:
// 移除wordpress核心更新提示
add_filter( ‘pre_site_transient_update_core’, create_function( ‘$a’, “return null;” ) );
// 移除wordpress插件更新提示
remove_action( ‘load-update-core.php’, ‘wp_update_plugins’ );
add_filter( ‘pre_site_transient_update_plugins’, create_function( ‘$b’, “return null;” ) );
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容