Skip to content

Instantly share code, notes, and snippets.

@alexpos
Created May 21, 2013 12:47
Show Gist options
  • Save alexpos/5619528 to your computer and use it in GitHub Desktop.
Save alexpos/5619528 to your computer and use it in GitHub Desktop.
function word_count() {
$content = get_post_field( 'post_content', $post->ID );
$word_count = str_word_count( strip_tags( $content ) );
return $word_count;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment