AdamWagner
11/30/2012 - 3:26 AM

Get the word count of a WordPress blog post

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));
}