作者姓名长度是否有字符限制? 时间:2018-12-05 作者:A. Muller 在评论中,我想限制作者姓名。例如,作者的姓名不得超过10个字符。我正在寻找一种方法来做到这一点。提前非常感谢您。 1 个回复 最合适的回答,由SO网友:SeventhSteel 整理而成 有一个过滤器叫做get_comment_author 您可以连接到它来修改注释作者的外观。add_filter( \'get_comment_author\', function( $author, $comment_id, $comment ) { // limit to first 10 characters $author = substr( $author, 0, 10 ); return $author; }, 10, 3 ); 文章导航