Skip to content

Instantly share code, notes, and snippets.

@georgiecel
Created June 24, 2015 13:18
Show Gist options
  • Save georgiecel/14c43aa3b6b8913d5481 to your computer and use it in GitHub Desktop.
Save georgiecel/14c43aa3b6b8913d5481 to your computer and use it in GitHub Desktop.
word count for WordPress post, use <?php echo wordcount(); ?> in the post loop
function wordcount() {
ob_start();
the_content();
$postcontent = ob_get_clean();
return sizeof(explode(" ", $postcontent));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment