WordPress页面模板列出所有帖子

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WordPress页面模板列出所有帖子相关的知识,希望对你有一定的参考价值。

  1. <?php
  2. /*
  3. Template Name: All posts
  4. */
  5. ?>
  6. <!-- via bit.ly/wprec-allposts -->
  7. <?php get_header(); ?>
  8. <?php
  9. $debut = 0; //The first article to be displayed
  10. ?>
  11. <?php while(have_posts()) : the_post(); ?>
  12. <h2><?php the_title(); ?></h2>
  13. <ul>
  14. <?php
  15. $myposts = get_posts('numberposts=-1&offset=$debut');
  16. foreach($myposts as $post) :
  17. ?>
  18. <li><?php the_time('d/m/y') ?>: <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
  19. <?php endforeach; ?>
  20. </ul>
  21. <?php endwhile; ?>
  22. <?php get_sidebar(); ?>
  23. <?php get_footer(); ?>

以上是关于WordPress页面模板列出所有帖子的主要内容,如果未能解决你的问题,请参考以下文章

在 wordpress 的自定义页面模板中显示帖子分类信息

子页面的 Wordpress 自定义永久链接

Wordpress 为自定义帖子类型存档页面选择了错误的模板

text Wordpress列出所有帖子在wordpress(博客或新闻页面))

在 Wordpress 中显示存档帖子

子目录中的 Wordpress 模板文件