I want to display the number of published posts on one of my template files (index.php), and I have tried using the wp_count_posts template tag, but it does not seem to work.
http://codex.wordpress.org/Template_Tags/wp_count_posts
The following versions display nothing:
<?php $published_posts=wp_count_posts(); ?>
<?php $published_posts=wp_count_posts('post','publish'); ?>
<?php wp_count_posts(); ?>
<?php wp_count_posts('post','publish'); ?>
While these versions display Object:
<?php $published_posts=wp_count_posts(); echo $published_posts; ?>
<?php $published_posts=wp_count_posts('post','publish'); echo $published_posts; ?>
What do I need to fix to make it work?