Use this in single.php or page.php, or functions.php
1 2 3 4 5 6 |
<?php $count_posts = wp_count_posts(); return $count_posts->publish; //130 posts ?> |
or show how many pages
1 2 3 4 5 |
<?php echo $pages = get_option('posts_per_page'); //10 pages ?> |
You might need to use ‘return’ or ‘echo’