publish;
$draft_posts = $count_posts->draft;
$count_pages = wp_count_posts('page');
$comments_count = wp_count_comments();
$total_comments = $comments_count->total_comments;
echo '
- Published posts: '.$published_posts.'
';
echo '- Posts in-draft: '.$draft_posts.'
';
echo '- Total pages: '.$count_pages->publish.'
';
echo '- Comments in moderation: '.$comments_count->moderated.'
';
echo '- Comments approved: '.$comments_count->approved.'
';
echo '- Total Comments: '.$total_comments.'
';
}
include("ag-widgets.php");
?>