Wordpress小组按周发布

时间:2014-06-25 19:24:32

标签: php wordpress loops posts

我正在寻找一种方式展示并按周导航wordpress帖子。

我每周要发4-6个帖子,我希望主页显示该周的帖子。之前的每个页面都应显示按周排序的一组帖子。

每周的帖子数量不固定,会有所不同,所以我不确定如何解决这个问题。

提前致谢!

2 个答案:

答案 0 :(得分:0)

这样的事情就是你的事后

<?php 
$week = date('W');
$year = date('Y');
$the_query = new WP_Query( 'year=' . $year . '&w=' . $week );
if ( $the_query->have_posts() ) : 
while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
    <h2><a href="<?php the_permalink(); ?>" title="Permanent link to <?php the_title(); ?> "><?php the_title(); ?></a></h2>
    <?php the_excerpt(); ?>
  <?php endwhile; ?>
  <?php wp_reset_postdata(); ?>
<?php else:  ?>
  <p><?php _e( 'Sorry, no posts matched your criteria.' ); ?></p>
<?php endif; ?>

答案 1 :(得分:0)

不确定这是否有效但未经过测试

<?php 
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
$week = date('W');
$year = date('Y');
$the_query = new WP_Query( 'posts_per_page' => 50, 'paged' => $paged, 'year=' . $year . '&w=' . $week );
if ( $the_query->have_posts() ) : 
while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
    <h2><a href="<?php the_permalink(); ?>" title="Permanent link to <?php the_title(); ?> "><?php the_title(); ?></a></h2>
    <?php the_excerpt(); ?>
  <?php endwhile; ?>
  <?php wp_reset_postdata(); ?>
<?php else:  ?>
  <p><?php _e( 'Sorry, no posts matched your criteria.' ); ?></p>
<?php endif; ?>