If you want to set minimum word count for your posts to publish public, then answer is for you. In this answer, we have shared how to set minimum word count to publish post in WordPress.
Add the below code at the end of your theme’s functions.php file or you can also add the below code inside your site-specific plugin.
1 2 3 4 5 6 7 8 9 10 | // set minimum word count to publish post function wcs_min_word_count( $content ) { global $post; $wordcount = 300; $content = $post->post_content; if ( str_word_count( $content ) < $wordcount ) wp_die( __( 'Error: your post is below the minimum word count. Posts must have at least ' . $wordcount . ' words.' ) ); } add_action( 'publish_post', 'wcs_min_word_count' ); |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.