doumei2023 2014-06-25 19:24
浏览 10

Wordpress小组按周发布

I am looking for a way show and navigate wordpress posts by week.

I'll be making 4-6 posts a week and I want the home page to display the posts for that week. Each page before that should display a group of posts sorted by week.

The amount of posts per week is not fixed and will vary so i'm not sure how to go about this.

Thanks in advance!

  • 写回答

2条回答 默认 最新

  • dongxing8009 2014-06-25 20:16
    关注

    Something like this is what your after

    <?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; ?>
    
    评论

报告相同问题?

悬赏问题

  • ¥20 求个正点原子stm32f407开发版的贪吃蛇游戏
  • ¥15 正弦信号发生器串并联电路电阻无法保持同步怎么办
  • ¥15 划分vlan后,链路不通了?
  • ¥20 求各位懂行的人,注册表能不能看到usb使用得具体信息,干了什么,传输了什么数据
  • ¥15 Vue3 大型图片数据拖动排序
  • ¥15 Centos / PETGEM
  • ¥15 划分vlan后不通了
  • ¥20 用雷电模拟器安装百达屋apk一直闪退
  • ¥15 算能科技20240506咨询(拒绝大模型回答)
  • ¥15 自适应 AR 模型 参数估计Matlab程序