php-隐藏“发布后”.在WordPress中查看“发布”管理员通知
作者:互联网
有谁知道如何隐藏管理员在WordPress网站上发布帖子后出现的发布帖子消息.
我已经看到了这个示例,以向管理员以外的所有人隐藏“更新可用”消息,但是我不确定需要添加什么来删除保存消息:
function hide_update_notice_to_all_but_admin_users()
{
if (!current_user_can('update_core')) {
remove_action( 'admin_notices', 'update_nag', 3 );
}
}
add_action( 'admin_head', 'hide_update_notice_to_all_but_admin_users', 1 );
我需要删除常规帖子和自定义帖子类型上的消息.据我所知,这只是替换’update_nag’的一种情况,但是我不确定用什么替换它.
谢谢
解决方法:
这应该删除“发布后”消息.
add_filter( 'post_updated_messages', 'post_published' );
function post_published( $messages )
{
unset($messages[post][6]);
return $messages;
}
以上是基于this的答案,修改后仅删除了“发布后”消息.
标签:wordpress-theming,wordpress-plugin,wordpress,php 来源: https://codeday.me/bug/20191029/1957865.html