Created
May 21, 2013 12:47
-
-
Save alexpos/5619528 to your computer and use it in GitHub Desktop.
Word Count for WordPress
http://www.thomashardy.me.uk/wordpress-word-count-function
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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