Forums
(@jkulig)
14 years, 3 months ago
wp_count_posts() returns an object. Make sure you reference one of its properties:
<?php $count_posts = wp_count_posts('posts'); echo $count_posts->publish; // ?>