Я пытаюсь отобразить 3 сообщения с прошлой недели в разделе виджетов
Я использовал этот код
function wpb_last_week_posts() {
$thisweek = date('W');
if ($thisweek != 1) :
$lastweek = $thisweek - 1;
else :
$lastweek = 52;
endif;
$year = date('Y');
if ($lastweek != 52) :
$year = date('Y');
else:
$year = date('Y') -1;
endif;
$the_query = new WP_Query('year=' . $year . '&w=' . $lastweek );
if ( $the_query->have_posts() ) :
while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
<br>
<style>
.weeklyimg {
float:left;height:auto;width:100px;margin-right: 10px;
}</style>
<br>
<a href="<?php the_permalink(); ?>" title="Permanent link to <?php the_title(); ?> "><?php the_post_thumbnail('thumbnail', array('class' => 'weeklyimg attachment-post-thumbnail size-post-thumbnail wp-post-image no-display appear')); ?></a>
<h6><a href="<?php the_permalink(); ?>" title="Permanent link to <?php the_title(); ?> "><?php the_title(); ?></a></h6>
<span class="entry-date" style="
float: right;
width: 52px;
font-weight: 600;
font-size: 11px;
padding: 5px;
background: #f5f5f5;
color: #757575;
"><?php echo get_the_date(); ?></span>
<pre><code> <?php endwhile; ?>
<?php wp_reset_postdata(); ?>
<?php else: ?>
<p><?php _e( 'Sorry, no posts matched your criteria.' ); ?></p>
<?php endif;
}
add_shortcode('lastweek', 'wpb_last_week_posts');
Это сработало, но я не знаю, как настроить количество сообщений.
Я пытался добавить posts_per_page=3
на $the_query = new WP_Query('year=' . $year . '&w=' . $lastweek );
, но это сработало только частично, потому что я получаю сообщения не с прошлой недели, а с последних 24 часов: /..
Может быть, кто-то может мне помочь с этим.
Спасибо.