Can anyone tell if this plugin counts the total # of words in Posts & Pages, or Just Posts?
I want to count just the posts.
http://wordpress.org/extend/plugins/post-word-count/
the relevant part of the plugin code may be this,
if ($single) $query = "SELECT post_content FROM $wpdb->posts WHERE ID = '$id'";
else $query = "SELECT post_content FROM $wpdb->posts WHERE post_status = 'publish' AND post_date < '$now'";
How to exclude Pages from it?