Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nschaeferhoff/4f7f96a1aee961d269143378d64d06b1 to your computer and use it in GitHub Desktop.
Save nschaeferhoff/4f7f96a1aee961d269143378d64d06b1 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