wp_reset_postdata()

wp_reset_postdata() 在循环执行一个单独的查询之后,此函数将$post global恢复到主…

wp_reset_postdata()

在循环执行一个单独的查询之后,此函数将$post global恢复到主查询中的当前post。
After looping through a separate query, this function restores the $post global to the current post in the main query.

目录锚点:#参数#源码#笔记


参数(Parameters)

参数 类型 说明

源码(Source)

/**
 * After looping through a separate query, this function restores
 * the $post global to the current post in the main query.
 *
 * @since 3.0.0
 *
 * @global WP_Query $wp_query
 */
function wp_reset_postdata() {
	global $wp_query;

	if ( isset( $wp_query ) ) {
		$wp_query->reset_postdata();
	}
}
更新版本 源码位置 使用 被使用
3.0.0 wp-includes/query.php 15 12

笔记(Notes)

二次回路和复位示例

类别:WordPress 函数手册

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册