有人知道如何隐藏在管理员的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'
的情况,但我不确定用什么来代替它。
由于
答案 0 :(得分:4)
这应该删除" Post Published"消息。
add_filter( 'post_updated_messages', 'post_published' );
function post_published( $messages )
{
unset($messages[post][6]);
return $messages;
}
上述内容基于this回答,修改为仅删除"发布后"消息。