添加新帖子时选择标签

时间:2013-08-24 作者:user2656218

在Wordpress CMS的“添加新帖子”页面中,我只想让用户在“标签选择框”中选择建议标签,而不能添加新标签。我该怎么做?

1 个回复
SO网友:Vinod Dalvi

只需在函数中复制粘贴以下代码。php文件,它将在WordPress后端添加一些css代码,这将隐藏文本框并添加标签元框的按钮,以防止用户添加新标签。

add_action(\'admin_head\', \'custom_css\');

function custom_css() {
    echo \'<style>
#tagsdiv-post_tag .howto,
#tagsdiv-post_tag .tagadd,
#tagsdiv-post_tag #new-tag-post_tag{
    display: none;
    }   
  </style>\';
}

结束

相关推荐

在editags.php中使用多个id过滤分类术语

我想使用编辑标签。具有多个术语id的php搜索函数。例如,如果我在搜索框中键入以下内容:#1245&;6832,它应该在结果表(WP\\U terms\\U List\\U table)中显示这两个术语。我尝试使用pre\\u get\\u posts操作访问正在运行的搜索查询,但这只是显示一个“空”查询:add_action(\'pre_get_posts\', \'filter_terms_by_ids\' ); function filter_terms_by_ids( $w