А то они у меня копируются до бесконечности
Если выборка идет по алгоритму "за последнюю неделю":
<?php
// WP_Query arguments
$last_month_args = array(
'post_type' => 'post',
'post_status' => 'publish',
'orderby' => 'date',
'order' => 'DESC',
// Using the date_query to filter posts from last week
'date_query' => array(
array(
'after' => '1 week ago'
)
)
);
// The Query
$last_month_posts = new WP_Query( $last_month_args );
// The Loop
if ( $last_month_posts->have_posts() ) {
while ( $last_month_posts->have_posts() ) {
$last_month_posts->the_post();
get_template_part('pinbox', get_post_format());
}
} else {
// Если постов нет
}
// Restore original Post Data
wp_reset_postdata();
?>
Спасибо!