这样一来可以提高投稿的质量,二来可以不至于用户乱投稿行为,这里麦子整理这个脚本,如果有需要的可以添加到网站中限制投稿文章的字数限制。
function minimum_number_words($content)
{
global $post;
$content = $post->post_content;
if (str_word_count($content) < 500 )
wp_die( __('提高投稿文章字数需要超过500个') );
}
将上面代码提交到当前主题的functions.php页面中保存即可。