如何在WordPress中设置最大评论长度?

您是否要在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

(0)
上一篇 2022年5月23日
下一篇 2022年5月23日

相关推荐

发表回复

登录后才能评论