网站建设将分享如何从“管理”面板隐藏WordPress更新消息。在隐藏WordPress更新消息之前,请记住,显示管理员通知消息非常重要,这样您就可以解决您的网站问题。
如何隐藏WordPress更新消息
复制以下代码并将其添加到themes / your-theme-folder / functions.php文件的末尾。
// Hide the WordPress Update Message
function wp_hide_update() {
remove_action('admin_notices', 'update_nag', 3);
}
add_action('admin_menu','wp_hide_update');
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/260087.html