标签: wordpress wordpress-plugin
我正在使用“tdo mini forms”,我想限制用户可以输入的标签数量。我希望用户不能输入超过4的标签。
非常感谢任何帮助。
答案 0 :(得分:0)
将此内容写入主题的functions.php文件
add_filter('term_links-post_tag','limit_to_five_tags'); function limit_to_five_tags($terms) { return array_slice($terms,0,5,true); }