the_post()函数基本使用
if ( have_posts() ) {while ( have_posts() ) {
the_post(); ?>
<h2><?php the_title(); ?></h2>
<?php the_content(); ?>
<?php }
}
the_post()函数源代码
File: wp-includes/query.php
function the_post() {
global $wp_query;
$wp_query->the_post();
}
function the_post() {
global $wp_query;
$wp_query->the_post();
}
the_post()其它相关函数
根据文档,在循环中访问帖子的可用功能有:- next_post_link() – 一个到当前文章后按时间顺序发布的文章的链接
- previous_post_link() – 在当前帖子之前按时间顺序发布的文章的链接
- the_category() – 与正在查看的帖子或页面相关联的一个类别或多个类别
- the_author() – 文章或页面的作者
- the_content() – 一篇文章或页面的主要内容
- the_excerpt() – 一篇文章的主要内容的前55个单词,后面加上一个省略号(……),或阅读更多指向全文的链接。您也可以使用文章的“摘录”字段来自定义特定摘录的长度。
- the_ID() – 文章或页面的ID
- the_meta() – 与帖子或页面关联的自定义字段
- the_shortlink() –使用网站的url和文章或页面的ID到页面或帖子的链接
- the_tags() – 与帖子相关联的标签
- the_title() – 文章或页面的标题
- the_time() – 发布文章或页面的时间或日期。这可以使用标准的php日期函数格式进行自定义。
转载请注明来源网址:青锋建站-http://www.sjzphp.com/cmsxitong/wordpressxt/the_post_1379.html