Skip to content

Instantly share code, notes, and snippets.

@DrewAPicture
Created May 6, 2014 00:46
Show Gist options
  • Save DrewAPicture/11550905 to your computer and use it in GitHub Desktop.
Save DrewAPicture/11550905 to your computer and use it in GitHub Desktop.
Count words and junk.
<?php
function count_wtd_words() {
$posts = get_posts( array(
'tag' => 'write-the-docs',
'posts_per_page' => -1,
'suppress_filters' => false,
'post_status' => 'publish',
) );
$count = 0;
if ( $posts ) {
foreach ( $posts as $post_obj ) {
$count = $count + (int) str_word_count( $post_obj->post_content );
}
}
return $count;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment