WordPress页面模板列出所有帖子
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WordPress页面模板列出所有帖子相关的知识,希望对你有一定的参考价值。
<?php /* Template Name: All posts */ ?> <!-- via bit.ly/wprec-allposts --> <?php get_header(); ?> <?php $debut = 0; //The first article to be displayed ?> <?php while(have_posts()) : the_post(); ?> <h2><?php the_title(); ?></h2> <ul> <?php $myposts = get_posts('numberposts=-1&offset=$debut'); foreach($myposts as $post) : ?> <li><?php the_time('d/m/y') ?>: <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> <?php endforeach; ?> </ul> <?php endwhile; ?> <?php get_sidebar(); ?> <?php get_footer(); ?>
以上是关于WordPress页面模板列出所有帖子的主要内容,如果未能解决你的问题,请参考以下文章
Wordpress 为自定义帖子类型存档页面选择了错误的模板