我需要删除Edit link 旁边Publish immediately 因为我不想让我的用户安排帖子。我怎样才能做到这一点?谢谢
在添加新帖子时,删除“立即发布”旁边的“编辑链接”
1 个回复
最合适的回答,由SO网友:birgire 整理而成
下面是一个通过CSS隐藏“编辑”链接的方法:
function wpse85434_hide_editlinks() {
if(!current_user_can(\'manage_options\')){
// only for non-admins
echo "<style>.misc-pub-section .edit-timestamp{display:none !important;} </style>";
}
}
add_action(\'admin_head-post.php\',\'wpse85434_hide_editlinks\');
add_action(\'admin_head-post-new.php\',\'wpse85434_hide_editlinks\');
我使用!current_user_can(\'manage_options\')
因此,它将对管理员可见。之前:
之后:
结束