Category post count is not correct

You’re a post type that doesn’t exist, there is no Post post type, did you mean post? Sidenotes: wp_reset_query is only for use after query_posts you should be using wp_reset_postdata instead. There is no if ( $loop->have_posts() ) check so if no posts are found there is no message and it looks like the page … Read more

Separate blog and reviews categories

Sounds like you’re sharing the default category taxonomy for both of your post types. When you want separate categories per post type, you would need to create a custom taxonomy for your review posts. Please check out the register_taxonomy function in the WordPress developers documentation. https://developer.wordpress.org/reference/functions/register_taxonomy/ See below an example of a custom taxonomy. add_action( … Read more