is_singular

函式
is_singular ( $post_types = '' )
引數
  • (string|string[]) $post_types Optional. Post type or array of post types to check against. Default empty.
    Required:
    Default: (empty)
返回值
  • (bool) Whether the query is for an existing single post or any of the given post types.
相關
  • is_page()
  • is_single()
定義位置
相關方法
is_singleis_searchis_sslis_main_queryis_year
引入
1.5.0
棄用
-

is_singular: 這個函式檢查當前頁面是否是一個單一的文章、頁面或附件。如果該頁面是一個單獨的文章、頁面或附件,則返回 true,否則返回 false。

確定查詢是否為任何文章型別(文章、附件、頁面、自定義文章型別)的現有單個文章。

如果指定了$post_types引數,該函式將額外檢查該查詢是否為指定的文章型別之一。

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

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
function is_singular( $post_types = '' ) {
global $wp_query;
if ( ! isset( $wp_query ) ) {
_doing_it_wrong( __FUNCTION__, __( 'Conditional query tags do not work before the query is run. Before then, they always return false.' ), '3.1.0' );
return false;
}
return $wp_query->is_singular( $post_types );
}
function is_singular( $post_types = '' ) { global $wp_query; if ( ! isset( $wp_query ) ) { _doing_it_wrong( __FUNCTION__, __( 'Conditional query tags do not work before the query is run. Before then, they always return false.' ), '3.1.0' ); return false; } return $wp_query->is_singular( $post_types ); }
function is_singular( $post_types = '' ) {
	global $wp_query;

	if ( ! isset( $wp_query ) ) {
		_doing_it_wrong( __FUNCTION__, __( 'Conditional query tags do not work before the query is run. Before then, they always return false.' ), '3.1.0' );
		return false;
	}

	return $wp_query->is_singular( $post_types );
}

常見問題

FAQs
檢視更多 >