فکر کنم میشه:
<?php
$day = date('j');
query_posts('post_type=product&day='.$day);
$post_numbers = "0";
if (have_posts()) :
while (have_posts()) : the_post();
$post_numbers++;
endwhile;
?>
امروز <?php echo $post_numbers;?> محصول جدید در فروشگاه قرار گرفته است.
<?php...