正如我在本系列简介中概述的那样,WP_Query
类有四个主要元素:
在本教程中,我将向您展示如何通过 WP_Query
使用循环,包括构建循环的两种主要方法以及如何使用多个循环。
如果没有循环,页面上将不会显示任何内容。 WordPress 使用您定义的参数运行查询后,需要告知它从获取的数据中输出什么。这就是循环出现的地方。
因此循环出现在查询之后,它使用三个标签:
if( $query->have_posts() )
检查是否有任何帖子。它通过检查查询的 post_count
属性的值是否小于 current_post + 1
的值来实现这一点。while( $query->have_posts() ) 只要有要检索的帖子,
就会对每个帖子重复循环。正如你所看到的,这个 have_posts()
方法与我们之前调用的检查是否有帖子的方法相同。请记住,此方法不会增加帖子计数器。它只是让我们知道循环中是否有任何帖子或者我们是否处于循环末尾。一旦到达结尾,它也会自动倒回循环。$query->the_post()
访问该特定帖子。它还执行其他一些操作,例如检索下一篇文章,并增加帖子计数器。它还设置了全球发布数据供我们使用。当您在循环内时,不应调用 have_posts()
方法。这是因为 have_posts()
会将循环倒回到开头,您将陷入无限循环。
现在,这是循环在 WP_Query
类中的位置:
<?php $args = array( // Arguments for your query. ); // Custom query. $query = new WP_Query( $args ); // Check that we have query results. if ( $query->have_posts() ) { // Start looping over the query results. while ( $query->have_posts() ) { $query->the_post(); // Contents of the queried post results go here. } } // Restore original post data. wp_reset_postdata(); ?>
运行循环后,剩下要做的就是使用 wp_reset_postdata()
进行整理。
循环的结构方式取决于您想要从帖子中显示的数据。下面是一个示例循环,它输出帖子标题、特色图像和摘录。您可以在存档页面上使用这样的循环。
<?php $args = array( // Arguments for your query. ); // Custom query. $query = new WP_Query( $args ); // Check that we have query results. if ( $query->have_posts() ) { // Start looping over the query results. while ( $query->have_posts() ) { $query->the_post(); ?> <article id="post-<?php the_ID(); ?>" <?php post_class( 'left' ); ?>> <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"> <?php post_thumbnail( 'thumbnail' );?> </a> <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"> <?php the_title(); ?> </a> <?php the_excerpt(); ?> </article> <?php } } // Restore original post data. wp_reset_postdata(); ?>
此循环准确显示了我上面所描述的内容:特色图像、标题和摘录。
但有时您可能想在帖子列表之前添加标题,或者您可能想将它们全部包含在包含元素中。如果您只是在循环之前添加此内容,则无论查询是否实际返回任何数据,它都会输出,这意味着您可能有一个标题下面没有任何内容,或者有一些不必要的标记。
通过将封闭元素或标题放入 if
标记中,可以很容易地解决这个问题:
<?php $args = array( // Arguments for your query. ); // Custom query. $query = new WP_Query( $args ); // Check that we have query results. if ( $query->have_posts() ) { echo '<section class="clear">'; echo '<h2>' . __( 'Heading', 'tutsplus' ) . '</h2>'; // Start looping over the query results. while ( $query->have_posts() ) { $query->the_post(); ?> <article id="post-<?php the_ID(); ?>" <?php post_class( 'left' ); ?>> <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"> <?php post_thumbnail( 'thumbnail' );?> </a> <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"> <?php the_title(); ?> </a> <?php the_excerpt(); ?> </article> <?php } echo '</section>'; } // Restore original post data. wp_reset_postdata(); ?>
在这里您可以看到我已经检查了我的查询是否检索到了任何帖子,如果有,我已经打开了一个包含元素并添加了一个标题。
如果您想将查询结果输出为列表,这也很有用。假设我想创建给定类别中所有帖子的列表。 ul
元素不在我的循环内,因为它与某一特定帖子无关,但我只想在有帖子时输出它。所以我用这个:
<?php $args = array( 'category_name' => 'category-slug', 'post_type' => 'post' ); // Custom query. $query = new WP_Query( $args ); // Check that we have query results. if ( $query->have_posts() ) { echo '<ul class="category posts">'; // Start looping over the query results. while ( $query->have_posts() ) { $query->the_post(); ?> <li <?php post_class( 'left' ); ?>> <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"> <?php the_title(); ?> </a> </li> <?php } echo '</ul>'; } // Restore original post data. wp_reset_postdata(); ?>
这会检查查询是否已获取任何帖子,如果是,则打开 ul
元素,然后运行循环。
需要注意的是,虽然您可以使用 WP_Query
运行多个循环,但您必须重置发布数据并启动 WP_Query
运行多个循环,但您必须重置发布数据并启动
此示例显示第一篇文章的摘录和特色图像,然后仅显示每个后续文章的标题:
<?php // First query arguments. $args1 = array( 'post_type' => 'post', 'posts_per_page' => '1' ); // First custom query. $query1 = new WP_Query( $args1 ); // Check that we have query results. if ( $query1->have_posts() ) { // Start looping over the query results. while ( $query1->have_posts() ) { $query1->the_post(); ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"> <?php post_thumbnail( 'thumbnail' );?> </a> <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"> <?php the_title(); ?> </a> <?php the_excerpt(); ?> </article> <?php } } // Restore original post data. wp_reset_postdata(); // Second query arguments. $args2 = array( 'offset' => '1', 'post_type' => 'post' ); // Second custom query. $query2 = new WP_Query( $args2 ); // Check that we have query results. if ( $query2->have_posts() ) { echo '<ul class="more-posts">'; // Start looping over the query results. while ( $query2->have_posts() ) { $query2->the_post(); ?> <li <?php post_class(); ?>> <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"> <?php the_title(); ?> </a> </li> <?php } echo '</ul>'; } // Restore original post data. wp_reset_postdata(); ?>
'posts_per_page' => '1'
'offset' = '1'
ul
元素,并将每个帖子标题包含在 li
从上面的代码中可以看出,每个查询的循环略有不同。第一个输出特色图像、标题和摘录,而第二个检查查询是否有帖子,如果有,则打开
li
元素及其页面的链接。🎜您还会注意到我在两个循环之后使用了 wp_reset_postdata()
。如果我没有这样做,那么在辅助循环之外使用模板标签将为我提供有关循环内最后一篇文章的数据。调用此函数会将发布数据重置到主查询。
您可以在循环内调用许多函数来访问有关当前帖子的信息。您也已经看到本教程中使用了其中一些。在本节中,我将向您列出一些您可能偶尔会使用的常用功能。
您可以使用三个函数来获取帖子的标题。它们是 the_title()
、get_the_title()
和 the_title_attribute()
。 get_the_title()
函数只是检索帖子标题,而 the_title()
将根据传递的参数显示或检索标题以及可选标记。当您想在显示标题之前对其进行清理时,您应该使用 the_title_attribute()
。
有一个名为 the_excerpt()
的专用函数来显示当前帖子的摘录。它将多个过滤器应用于所提供的摘录,以便可以正确地向观众显示。并非每篇文章都会有作者提供的摘录。在这种情况下,它会在显示之前生成完整帖子摘录的精简版本。
您可以使用函数 the_content()
显示帖子的完整内容。
您的 WordPress 帖子通常会有您分配的一些标签或类别。您可以使用 the_tags()
和 the_category()
函数在循环中显示这些标签和类别的列表。使用 the_author()
函数显示帖子的作者。帖子的 ID 也可以通过函数 the_ID()
访问。
WordPress 中有专用函数,您可以在循环中使用它们来显示帖子的发布日期 (the_date()
) 和时间 (the_time()
)。您应该记住的两个重要点是 the_time()
也可以用于仅显示帖子的发布日期。此外,对于同一天发布的多个帖子, the_date()
的输出仅回显一次。这基本上意味着您几乎总是希望使用 the_time()
以获得更大的灵活性和易用性。
如果没有循环,WP_Query
并没有真正做太多事情。该循环是您用来显示 WordPress 根据您的查询参数从数据库中获取的数据的代码。
正如我所演示的,循环有一些变化。一个简单的循环将按照您在查询参数中指定的顺序(或默认情况下按日期降序)输出所有帖子。如果将 if( $query->have_posts() )
和 while( $query->have_posts() )
分开,您可以在循环外部插入额外的标记,但前提是您的查询已返回数据。最后,通过指定替代参数并在每次循环后使用 if( $query->have_posts() )
和 while( $query->have_posts() )
分开,您可以在循环外部插入额外的标记,但前提是您的查询已返回数据。最后,通过指定替代参数并在每次循环后使用 wp_reset_postdata()
,您可以多次使用 WP_Query
,您可以多次使用
这篇文章已根据 Nitish Kumar 的贡献进行了更新。 Nitish 是一名 Web 开发人员,拥有在各种平台上创建电子商务网站的经验。他将业余时间花在个人项目上,让他的日常生活变得更轻松,或者在晚上与朋友一起散步。
🎜以上是掌握 WP_Query:利用循环的力量的详细内容。更多信息请关注PHP中文网其他相关文章!