如何在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' );
上一个:淡季市场营销之网站推广策略 管理的四大策略分析
下一个:网站降权怎么办?如何处理降权网站
合肥网站建设,合肥做网站,合肥网站设计