循环是WordPress用于通过主题的模板文件输出帖子的默认机制。 检索的帖子数量取决于阅读设置中定义的每页显示的帖子数量。 在循环中,WordPress将检索要显示在当前页面上的每个帖子,并根据您的主题说明进行格式化。
循环从WordPress数据库中提取每个帖子的数据,并插入适当的信息代替每个模板标签。 将为每个帖子处理循环中的任何HTML或PHP代码。
简单来说,循环是它的名字:它循环遍历当前页面检索到的每个帖子一次,并执行您的主题中指定的操作。
您可以使用循环来执行多种不同的操作,例如:
- 在您的博客主页上显示帖子标题和摘录;
- 在单个帖子上显示内容和评论;
- 使用模板标签在单个页面上显示内容; 和
- 显示来自Custom Post Types和Custom Fields的数据。
- 您可以在模板文件中自定义循环,以显示和操作不同的内容。
## 循环详情
基本循环是:
```
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
... Display post content
<?php endwhile; ?>
<?php endif; ?>
```
这个循环说,当有帖子时,循环并显示帖子。 详细介绍:
have_posts()函数检查是否有任何帖子。
如果有帖子,只要括号中的条件在逻辑上为真,则while循环将继续执行。 只要have_posts()继续为true,循环将继续。
## 使用循环
循环应放在index.php中,以及用于显示帖子信息的任何其他模板中。 因为你不想一遍又一遍地复制你的头,循环应该总是在调用get_header()之后放置。 例如:
```
<?php get_header(); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
... Display post content
<?php endwhile; endif; ?>
```
在上面的例子中,循环的结尾显示为一个结尾和endif。 循环必须始终以相同的if和while语句开始,如上所述,并且必须以相同的结束语句结尾。
您要应用于所有帖子的任何模板标签必须存在于开始和结束语句之间。
>[warning] 提示:如果没有符合指定条件的帖子可用,您可以添加自定义的404“未找到”消息。 消息必须放在endwhile和endif语句之间,如下面的示例所示。
一个非常简单的index.php文件将如下所示:
```
<?php
get_header();
if ( have_posts() ) : while ( have_posts() ) : the_post();
the_content();
endwhile;
else :
_e( 'Sorry, no posts matched your criteria.', 'textdomain' );
endif;
get_sidebar();
get_footer();
?>
```
## 循环可以显示
循环可以为每个帖子显示多个不同的元素。 例如,许多主题中使用的常见模板标签是:
- next_post_link() – 在这篇文章后按时间顺序发布的一篇链接
- previous_post_link() – 在这篇文章之前根据时间顺序发布了一篇链接
- the_category() – 与正在查看的帖子或页面相关联的类别或类别
- the_author() – 作者的帖子或页面
- the_content() – 页面的主要内容
- the_excerpt() – 一个帖子的主要内容的前55个字,后跟一个省略号(...)或阅读更多链接到完整的帖子。 您还可以使用帖子的“摘录”字段来自定义特定摘录的长度。
- the_ID() – 帖子或页面的ID
- the_meta() – 与帖子或页面关联的自定义字段
- the_shortlink() – 使用网站的网址和帖子或页面的ID链接到页面或帖子
- the_tags() –与帖子相关联的标签或标签
- the_title() – 帖子或页面的标题
- the_time() – 帖子或页面的时间或日期。 这可以使用标准php日期功能格式化来定制。
您还可以使用条件标签,例如:
- is_home() – 如果当前页面是主页,则返回true
- is_admin() – 如果是管理员,返回true,否则返回false
- is_single() – 如果页面当前显示单个帖子,则返回true
- is_page() – 如果页面当前显示单个页面,则返回true
- is_page_template() – 可用于确定页面是否正在使用特定的模板,例如:is_page_template('about-page.php')
- is_category() – 如果页面或帖子具有指定的类别,则返回true,例如:is_category('news')
- is_tag() – 如果页面或帖子具有指定的标签,则返回true
- is_author() – 如果在作者的归档页面内返回true
- is_search() – 如果当前页面是搜索结果页面,则返回true
- is_404() – 如果当前页不存在,则返回true
- has_excerpt() – 如果帖子或页面有摘录,则返回true
# 示例
让我们来看一下循环中的一些例子:
## 基本例子
### 博客归档
大多数博客都有一个博客归档页面,可以显示一些内容,包括帖子标题,缩略图和摘录。 下面的示例显示了一个简单的循环,检查是否有任何帖子,如果有的话,输出每个帖子的标题,缩略图和摘录。 如果没有帖子,它会以括号显示消息。
```
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<h2><?php the_title(); ?></h2>
<?php the_post_thumbnail(); ?>
<?php the_excerpt(); ?>
<?php endwhile; else: ?>
<?php _e( 'Sorry, no posts matched your criteria.', 'textdomain' ); ?>
<?php endif; ?>
```
## 个人帖子
在WordPress中,每个帖子都有自己的页面,显示该帖子的相关信息。 模板标签允许您自定义要显示的信息。
在下面的例子中,循环输出帖子的标题和内容。 您可以在帖子或页面模板文件中使用此示例来显示有关该帖子的最基本信息。 您还可以自定义此模板以向帖子添加更多数据,例如类别。
```
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<h1><?php the_title(); ?></h1>
<?php the_content(); ?>
<?php endwhile; else: ?>
<?php _e( 'Sorry, no pages matched your criteria.', 'textdomain' ); ?>
<?php endif; ?>
```
# 中间例子
## 不同类别的风格帖子
下面的例子有几件事情:
首先,它显示每个帖子的标题,时间,作者,内容和类别,类似于上面的单个帖子示例。
接下来,通过使用in_category()模板标签,可以使类别ID为“3”的帖子的样式不同。
此示例中的代码注释在循环的每个阶段提供了详细信息:
```
// Start the Loop.
<?php if ( have_posts() ) : while ( have_posts() ) : the_post();
/* * See if the current post is in category 3.
* If it is, the div is given the CSS class "post-category-three".
* Otherwise, the div is given the CSS class "post".
*/
if ( in_category( 3 ) ) : ?>
<div class="post-category-three">
<?php else : ?>
<div class="post">
<?php endif; ?>
// Display the post's title.
<h2><?php the_title() ?></h2>
// Display a link to other posts by this posts author.
<small><?php _e( 'Posted by ', 'textdomain' ); the_author_posts_link() ?></small>
// Display the post's content in a div.
<div class="entry">
<?php the_content() ?>
</div>
// Display a comma separated list of the post's categories.
<?php _e( 'Posted in ', 'textdomain' ); the_category( ', ' ); ?>
// closes the first div box with the class of "post" or "post-cat-three"
</div>
// Stop the Loop, but allow for a "if not posts" situation
<?php endwhile; else :
/*
* The very first "if" tested to see if there were any posts to
* display. This "else" part tells what do if there weren't any.
*/
_e( 'Sorry, no posts matched your criteria.', 'textdomain' );
// Completely stop the Loop.
endif;
?>
```
# 删除此部分
>[warning] 注意:此部分需要删除,但存在是因为手册插件中的错误无法正确显示主题框中的下一部分。
## 多重循环
在某些情况下,您可能需要使用多个循环。 例如,您可能希望在页面顶部的内容列表表中显示帖子的标题,然后在页面上进一步显示内容。 由于查询没有被改变,所以我们需要在第二次循环访问这些信息时,回滚循环。 为此,我们将使用函数rewind_posts()。
### 使用rewind_posts()
您可以再次使用rewind_posts()循环遍历相同的查询。 如果要在页面上的不同位置显示相同的查询两次,这将非常有用。
以下是正在使用的rewind_posts()的示例:
```
// Start the main loop
<?php
if ( have_posts() ) : while ( have_posts() ) : the_post();
the_title();
endwhile;
endif;
// Use rewind_posts() to use the query a second time.
rewind_posts();
// Start a new loop
while ( have_posts() ) : the_post();
the_content();
endwhile;
?>
```
## 创建辅助查询和循环
使用具有相同查询的两个循环相对容易,但并不总是您需要的。 相反,您通常会创建一个辅助查询来在模板上显示不同的内容。 例如,您可能希望在同一页面上显示两组帖子,但对每个组执行不同的操作。 如下所示,一个常见的例子是显示单个帖子,其中包含单个帖子下方相同类别的帖子列表。
```
<?php
// The main query.
if ( have_posts() ) : while ( have_posts() ) : the_post();
the_title();
the_content();
endwhile;
else :
// When no posts are found, output this text.
_e( 'Sorry, no posts matched your criteria.' );
endif;
wp_reset_postdata();
/*
* The secondary query. Note that you can use any category name here. In our example,
* we use "example-category".
*/
$secondary_query = new WP_Query( 'category_name=example-category' );
// The second loop. if ( $secondary_query->have_posts() )
echo '<ul>';
while ( $secondary_query->have_posts() ) :
$secondary_query->the_post();
echo '<li>' . get_the_title() . '</li>';
endwhile;
echo '</ul>';
endif;
wp_reset_postdata();
?>
```
如上例所示,我们首先显示一个常规循环。 然后我们定义一个使用WP_Query查询特定类别的新变量; 在我们的例子中,我们选择了示例类别的插件。
>[warning] 请注意,上述示例中的常规循环有一个区别:它调用wp_reset_postdata()来重置帖子数据。 在您可以使用第二个循环之前,您需要重置帖子数据。 有两种方法可以做到这一点:
- 通过使用rewind_posts()函数; 要么
- 通过创建新的查询对象。
## 重置多个循环
在您重置它们的模板中使用多个循环时,这很重要。 不这样做可能会导致意外的结果,因为数据在全局$post变量中的存储和使用。 有三种主要的方法来重置循环,具体取决于它们的调用方式。
- wp_reset_postdata()
- wp_reset_query()
- rewind_posts()
### 使用wp_reset_postdata()
当您使用WP_Query运行自定义或多个循环时,请使用wp_reset_postdata()。 此函数将全局$post变量恢复到主查询中的当前帖子。 如果您遵循最佳做法,这是您将用来重置循环的最常用功能。
要正确使用此功能,请在使用WP_Query的任何循环后放置以下代码:
```
<?php wp_reset_postdata(); ?>
```
这是一个使用WP_Query的循环的示例,它使用wp_reset_postdata()重置。
```
<?php
// Example argument that defines three posts per page.
$args = array( 'posts_per_page' => 3 );
// Variable to call WP_Query.
$the_query = new WP_Query( $args );
if ( $the_query->have_posts() ) :
// Start the Loop
while ( $the_query->have_posts() ) : $the_query->the_post();
the_title();
the_excerpt();
// End the Loop
endwhile;
else:
// If no posts match this query, output this text.
_e( 'Sorry, no posts matched your criteria.', 'textdomain' );
endif;
wp_reset_postdata();
?>
```
## 使用wp_reset_query()
使用wp_reset_query()将WP_Query和全局$post数据恢复到原始主查询。 如果在循环中使用query_posts(),则必须使用此功能来重置循环。 您可以在使用WP_Query自定义循环后使用它,因为它在运行时实际调用wp_reset_postdata()。 然而,最好的做法是使用wp_reset_postdata()与涉及WP_Query的任何自定义循环。
>[warning] 请注意:query_posts()不是最佳实践,如果可能的话应该避免。 因此,您不应该对wp_reset_query()有很多用处。
要正确使用此功能,请在使用query_posts()的任何循环后面放置以下代码。
```
<?php wp_reset_query(); ?>
```
- 简介
- 主题开发
- WordPress许可证
- 什么是主题
- 开发环境
- 主题开发示例
- 主题基础
- 模板文件
- 主样式表(style.css)
- 文章类型
- 规划主题文件
- 模板层级
- 模板标签
- 循环
- 主题函数
- 连接主题文件和目录
- 使用CSS和JavaScript
- 条件标签
- 类别,标签和自定义分类
- 模板文件
- 内容模板文件
- 页面模板文件
- 附件模板文件
- 自定义内容类型
- 部分和其他模板文件
- 评论模板
- 分类模板
- 404页面
- 主题功能
- 核心支持的功能
- 管理菜单
- 自定义Headers
- 自定义Logo
- 文章格式
- 置顶文章
- Sidebars
- Widgets
- 导航菜单
- 分页
- 媒体
- Audio
- Images
- Galleries
- Video
- 精选图片和缩略图
- 国际化
- 本地化
- 辅助功能
- 主题选项 – 自定义API
- 定制对象
- 改进用户体验的工具
- 定制JavaScript API
- JavaScript / Underscore.js渲染的自定义控件
- 高级用法
- 主题安全
- 数据消毒/逃避
- 数据验证
- 使用随机数
- 常见漏洞
- 高级主题
- 子主题
- UI最佳实践
- JavaScript最佳做法
- 主题单元测试
- 验证你的主题
- Plugin API Hooks
- 发布你的主题
- 所需的主题文件
- 测试
- 主题评论指南
- 写文档
- 提交你的主题到WordPress.org
- 参考文献
- 模板标签列表
- 条件标签列表
- 编码标准
- HTML编码标准
- CSS编码标准
- JavaScript编码标准
- PHP编码标准
- 插件开发
- 插件开发简介
- 什么是插件
- 插件基础
- 头部要求
- 包括软件许可证
- 启用 / 停用 Hooks
- 卸载方法
- 最佳做法
- 插件安全
- 检查用户功能
- 数据验证
- 保护输入
- 保护输出
- 随机数
- Hooks
- Actions
- Filters
- 自定义Hooks
- 高级主题
- 管理菜单
- 顶级菜单
- 子菜单
- 短代码
- 基本短码
- 封闭短码
- 带参数的短代码
- TinyMCE增强型短码
- 设置
- 设置API
- 使用设置API
- 选项API
- 自定义设置页面
- 元数据
- 管理帖子元数据
- 自定义元数据
- 渲染元数据
- 自定义文章类型
- 注册自定义文章类型
- 使用自定义文章类型
- 分类
- 使用自定义分类
- 在WP 4.2+中使用“split术语”
- 用户
- 创建和管理用户
- 使用用户元数据
- 角色和功能
- HTTP API
- JavaScript
- jQuery
- Ajax
- 服务器端PHP和入队
- Heartbeat API
- 概要
- 计划任务
- 了解WP-Cron计划
- 安排WP-Cron 事件
- 将WP-Cron挂接到系统任务计划程序中
- WP-Cron简单测试
- 国际化
- 本地化
- 如何国际化您的插件
- 国际化安全
- WordPress.org
- 详细插件指南
- 规划您的插件
- 如何使用Subversion
- 插件开发者常见问题
- 开发工具
- Debug Bar 和附加组件
- 辅助插件
- REST API手册
- 资源
- 文章
- 文章修订
- 文章类型
- 文章状态
- 类别
- 标签
- 页面
- 评论
- 分类
- 媒体
- 用户
- 设置
- 使用REST API
- 全局参数
- 分页
- 链接和嵌入
- 发现
- 认证
- 经常问的问题
- 骨干JavaScript客户端
- 客户端库
- 扩展REST API
- 添加自定义端点
- 自定义内容类型
- 修改回应
- 模式
- 词汇表
- 路由和端点
- 控制器类