Mesela
Bugün
Bugun eklenen konular
Dün
Dün eklenen konular
25.Eylül.2015 Cuma
Eklenen konular gibi ayirabilme seceneğimiz var mi acaba konulari ?
Sistem ayni dizilabdaki gibi yapabilirmiyiz wordpresste
$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();