Code to display the total count of post from a specific category by ID
Description

PHP Source Code
<?php
// Get the count of posts in category ID 267
$category_id = 267;
$category = get_category($category_id);
// Get the number of posts in this category
$post_count = $category->count;
// Display the result
echo $post_count;
?>