wordpress输出文章列表
have_posts() 判断是否有日志
the_posts() 获取下一篇文章的信息,并将信息存储全局变量$post中 //调用全局变量 global $post;
the_title() 获取变量标题
the_content() 获取当前日志的内容
the_category(',') 获取当前文章分类,参数为多个分类分隔符
the_author() 获取当前文章发布作者
the_time() 获取当前文章发布时间,未设置日期格式则按照wordpress后台设置日期格式输出
edit_post_link('before','编辑','after') 显示编辑链接,有三个参数,第二个为链接显示文字,一三分别为链接前后显示内容
_e()、__() 获取翻译
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<li>
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<p><?php the_excerpt(); ?></p>
<span><?php the_time('Y-m-d') ?></span>
</li>
<?php endwhile; ?>
<?php else : ?>
<p>没有找到文章</p>
<?php endif; ?>