如何输出所有文章列表?其实就是网站地图功能,只不过有人需要输出所有文章列表,并且以表格模式的需求,下面教大家如何实现:
1. 复制一份所用主题的 page.php,改名为 page-allpost.php
the_content(); ?>
2. 打开 page-allpost.php,找到类似下面这个文章内容输出函数,在其下面添加如下代码并保存
all postpublish; query_posts('posts_per_page=-1' );
while ( have_posts() ) : the_post();
echo '';
echo '';
echo ''; $published_posts--;
endwhile; wp_reset_query(); ?>
s.no
published date
post header
'.$published_posts.' '; the_time(get_option( 'date_format' ));
echo '