Step 1. Add the following inside your theme functions.php file or create a new Child theme first and add the code to it:
function post_count() {
$total = wp_count_posts()->publish;
return $total;
}
add_shortcode('total_posts','post_count');
Step 2. Add the shortcode [total_posts] anywhere on the website where you want to display the total number of posts:

And it will display the number. 🙂
Was this post helpful?
Let me know if you liked the post. That’s the only way I can improve. 🙂