你有多个作者的博客吗?然后,您可能想知道如何为WordPress中的帖子设置最小字数。在本文中,我们将与您分享一个片段,让您为WordPress帖子设置最小字数。如果用户试图发布一个太小的帖子,那么它将返回一个错误,告诉他们帖子不够长。

只需打开你的主题的 functions.php 文件并粘贴以下代码:

function minWord($content)
{
	global $post;
	$content = $post->post_content;
	if (str_word_count($content) < 100 ) //set this to the minimum number of words
	wp_die( __("Error: your post is below the minimum word count. It needs to be longer than 100 words.") );
}
add_action("publish_post", "minWord");

评论被关闭。