is_object_in_taxonomy

函式
is_object_in_taxonomy ( $object_type, $taxonomy )
引數
  • (string) $object_type Object type string.
    Required:
  • (string) $taxonomy Single taxonomy name.
    Required:
返回值
  • (bool) True if object is associated with the taxonomy, otherwise false.
定義位置
相關方法
is_object_in_termget_object_taxonomiesis_taxonomyget_taxonomyget_objects_in_term
引入
3.0.0
棄用
-

is_object_in_taxonomy: 這個函式檢查一個物件是否與一個給定的分類法相關。該物件可以是一個文章、術語或使用者。如果該物件與分類法相關聯,該函式返回”true”;如果沒有,則返回”false”。

確定給定的物件型別是否與給定的分類法相關。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
function is_object_in_taxonomy( $object_type, $taxonomy ) {
$taxonomies = get_object_taxonomies( $object_type );
if ( empty( $taxonomies ) ) {
return false;
}
return in_array( $taxonomy, $taxonomies, true );
}
function is_object_in_taxonomy( $object_type, $taxonomy ) { $taxonomies = get_object_taxonomies( $object_type ); if ( empty( $taxonomies ) ) { return false; } return in_array( $taxonomy, $taxonomies, true ); }
function is_object_in_taxonomy( $object_type, $taxonomy ) {
	$taxonomies = get_object_taxonomies( $object_type );
	if ( empty( $taxonomies ) ) {
		return false;
	}
	return in_array( $taxonomy, $taxonomies, true );
}

常見問題

FAQs
檢視更多 >