+function cx_posts_count(bool $include_drafts = false) {
+ $sql = 'SELECT
+ COUNT(post_id) AS _count
+ FROM posts
+ WHERE post_is_page == FALSE';
+
+ if ($include_drafts == false) {
+ $sql .= ' AND post_is_draft == FALSE';
+ }
+
+ $sql .= ';';
+
+
+ foreach (cx_db_query($sql) as $count_details) {
+ return $count_details['_count'];
+ }
+
+ return 0;
+}
+