我使用此代码限制注释长度
add_filter( \'preprocess_comment\', \'wpb_preprocess_comment\' );
function wpb_preprocess_comment($comment) {
if ( strlen( $comment[\'comment_content\'] ) > 5000 ) {
wp_die(\'Comment is too long. Please keep your comment under 5000 characters.\');
}
现在我需要在注释字段中显示用户已经写了多少个字符。是否可以将php代码转换为函数?或者你知道一些插件吗?
欢迎提出任何建议。