To Display total post count on any page in WordPress the following code will be helpful.
<?php
$total_posts = wp_count_posts();
echo number_format($total_posts->publish);
?>
This will display total posts in WordPress in number format.
No comments:
Post a Comment