如果尚未创建标记,可以使用“批量添加标记”插件-http://wordpress.org/extend/plugins/bulk-add-tags/
然后,要限制除管理员以外的所有用户通过“new Post”屏幕添加新标签,请将此代码添加到主题的功能中。php文件:
//Hide Post Page Options from all except Administrator
if (!current_user_can(\'administrator\')){
function hide_post_page_options() {
global $post;
$hide_post_options = "<style type=\\"text/css\\"> .jaxtag { display: none; }</style>";
print($hide_post_options);
}
add_action( \'admin_head\', \'hide_post_page_options\' );
}
这只会对除管理员以外的所有用户隐藏用于输入新标签的框。
实际上,我使用这种方法来隐藏“New Post”页面的许多区域。只需在之前查找并添加元素的div类或id{ display: none; }
并用逗号分隔。如果您不熟悉Firefox,可以将Firebug插件与Firefox配合使用,或者只需右键单击并选择Chrome中的“Inspect Element”。
与许多插件相比,我更喜欢这种方法,因为它不会完全从Wordpress中删除功能,功能只是对不需要它的用户隐藏。