Skip to content

Instantly share code, notes, and snippets.

@imelgrat
Last active August 23, 2017 18:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save imelgrat/04daad9f76324d5c3d70f41dcaac43d0 to your computer and use it in GitHub Desktop.
Save imelgrat/04daad9f76324d5c3d70f41dcaac43d0 to your computer and use it in GitHub Desktop.
Calculate the number of words in a Wordpress post. Full article at: http://imelgrat.me/wordpress/customize-wordpress-post-management-page/
function post_word_count($post_id) {
$content = get_post_field( 'post_content', $post_id );
$word_count = str_word_count( strip_tags( strip_shortcodes($content) ) );
return $word_count;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment