Hocam son bir sorum olacak ana sayfada da listelenen var burda sadece mevcut güne ait listelensin nasıl yapabiliriz. Son bir sorunum kaldı

<section class="top40">
<div class="ortala">

<?php
$kategori = $tema_ayarlar['basinilanKatSec'];$args = array(
'post_type'=> 'post',
'orderby' => 'ID',
'post_status' => 'publish',
'order' => 'DESC',
'posts_per_page' => 4,
'cat' => $kategori
);
$category = get_category($kategori);
$kategori_adi = $category->cat_name;
$kategori_url = get_category_link($kategori);
?>

<div class="anaBaslik">
<h2><?php echo $kategori_adi ?></h2>
<div data-control="<?php echo $kategori_adi ?>"></div>
<a target="_blank" href="<?php echo $kategori_url ?>" title="<?php echo $kategori_adi ?>"><?php echo $kategori_adi ?> <i class="fa-solid fa-arrow-right-from-bracket"></i></a>
</div>

<div id="resmiilan">

<?php
$result = new WP_Query( $args );
if ( $result-> have_posts() ) : ?>
<?php while ( $result->have_posts() ) : $result->the_post(); ?>
<div class="resmiilan">

<a target="_blank" href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
<figure>
<?php if (has_post_thumbnail()) {
vt_resize(get_post_thumbnail_id(), 270, 153, true);
} else {
echo '<img src="'.get_bloginfo('template_url').'/images/resmiilan.png" width="270" height="153"/>';
} ?>
</figure>
<time><?php the_time('d F Y'); ?> - <?php the_time('G:i'); ?></time>
<figcaption><?php the_title(); ?></figcaption>
</a>

</div>
<?php endwhile; ?>
<?php endif; wp_reset_postdata(); ?>

</div>

</div>
</section>
<div class="temizle"></div>