$today = getdate();
$args = array(
'post_type' => 'post',
'posts_per_page' => 5,
'date_query' => array(
array(
'year' => $today['year'],
'month' => $today['mon'],
'day' => $today['mday'],
),
),
);
$query = new WP_Query( $args );

if ( $query->have_posts() ) {
echo '
    ';
    while ( $query->have_posts() ) {
    $query->the_post();
    echo '
  • ' . get_the_title() . '
  • ';
    }
    echo '
';
}

wp_reset_postdata();



bugün eklenen 5 postu gösterir. Detaylı bilgi için bkz. http://wp-nasilyapilir.com/yardim/query-hakkinda-tum-bilmek-istedikleriniz/