in_the_loop

函式
in_the_loop ( No parameters )
返回值
  • (bool) True if caller is within loop, false if loop hasn't started or ended.
定義位置
相關方法
wp_find_hierarchy_loopsignup_another_bloginstall_themes_upload_n_noopget_theme_root
引入
2.0.0
棄用
-

in_the_loop: 這是一個確定當前WordPress迴圈是否正在執行的函式。如果迴圈正在執行,則返回true,否則返回false。

判斷呼叫器是否在迴圈中。

關於這個和類似的主題函式的更多資訊,請檢視《主題開發者手冊》中的{@link Conditional Tags}文章。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
function in_the_loop() {
global $wp_query;
if ( ! isset( $wp_query ) ) {
return false;
}
return $wp_query->in_the_loop;
}
function in_the_loop() { global $wp_query; if ( ! isset( $wp_query ) ) { return false; } return $wp_query->in_the_loop; }
function in_the_loop() {
	global $wp_query;

	if ( ! isset( $wp_query ) ) {
		return false;
	}

	return $wp_query->in_the_loop;
}

常見問題

FAQs
檢視更多 >