Merhabalar
Şu kod ile sitedeki son 900 içeriği çekiyor ben bu kodu son 15 gün olarak çekmesini istiyorum olmazsa aylıkta olabilir nasıl yapabiliriz ?
$args = array( 'post_type' => 'listing', 'posts_per_page' => 99999, 'tax_query' => array(
array(
'taxonomy' => $taxonomy,
'field' => 'id',
'terms' => $term_id
)
));
$listing_marker_loop = new WP_Query( $args );
while ( $listing_marker_loop->have_posts() ) : $listing_marker_loop->the_post();