Skip to content

Instantly share code, notes, and snippets.

@AdamWagner
Created November 30, 2012 03:26
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 AdamWagner/4173595 to your computer and use it in GitHub Desktop.
Save AdamWagner/4173595 to your computer and use it in GitHub Desktop.
Get the word count of a WordPress blog post
/*
Word count
*/
function wcount(){
ob_start();
the_content();
$content = ob_get_clean();
return sizeof(explode(" ", $content));
}
/*
Word count
*/
function wcount(){
ob_start();
the_content();
$content = ob_get_clean();
return sizeof(explode(" ", $content));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment