admin管理员组文章数量:1130349
In comments, I want to limit author names. For example, the author's name should be no more than 10 characters. I'm looking for a way to do this. Thank you very much in advance.
In comments, I want to limit author names. For example, the author's name should be no more than 10 characters. I'm looking for a way to do this. Thank you very much in advance.
Share Improve this question asked Dec 5, 2018 at 17:48 A. MullerA. Muller 439 bronze badges 01 Answer
Reset to default 0There's a filter called get_comment_author that you can hook into to modify a comment author's appearance.
add_filter( 'get_comment_author', function( $author, $comment_id, $comment ) {
// limit to first 10 characters
$author = substr( $author, 0, 10 );
return $author;
}, 10, 3 );
In comments, I want to limit author names. For example, the author's name should be no more than 10 characters. I'm looking for a way to do this. Thank you very much in advance.
In comments, I want to limit author names. For example, the author's name should be no more than 10 characters. I'm looking for a way to do this. Thank you very much in advance.
Share Improve this question asked Dec 5, 2018 at 17:48 A. MullerA. Muller 439 bronze badges 01 Answer
Reset to default 0There's a filter called get_comment_author that you can hook into to modify a comment author's appearance.
add_filter( 'get_comment_author', function( $author, $comment_id, $comment ) {
// limit to first 10 characters
$author = substr( $author, 0, 10 );
return $author;
}, 10, 3 );
本文标签: commentsAuthor name length character limit
版权声明:本文标题:comments - Author name length character limit? 内容由热心网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:https://it.en369.cn/questions/1749126160a2319813.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。


发表评论