您是否要在WordPress网站/博客中设置最大评论长度?将以下代码添加到当前激活的WordPress主题的functions.php文件中。
function limit_comment_length($comment) {
$max_length = 3000; // Set your length here
if ( strlen( $comment['comment_content'] ) > $max_length ) {
wp_die('Please keep your comment under '.$max_length.' characters.');
}
return $comment;
}
add_filter( 'preprocess_comment', 'limit_comment_length' );
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/260178.html