指定されたオブジェクトの親を含む配列を返します。
Returns an array containing the parents of the given object.
get_ancestorsのファンクションタグ使用方法
[php] [/php]概要
[php] 6,‘object_type’ => ‘page’ ); ?> [/php]
get_ancestorsのパラメーター
$object_id
(int or string) (required)子オブジェクトのIDです。
デフォルト:なし
(int or string) (required) The ID of the child object
Default: None
$object_type
(string) (required) 問題のオブジェクトタイプ(ページ、カテゴリー)の名前です。
デフォルト:なし
(string) (required) The name of the object type (page, category) in question
Default: None
例
次のカテゴリー階層(ID付き)を取得します。
Given the following category hierarchy (with IDs):
- Books (6)
- Fiction (23)
- Mystery (208)
戻り値:
[php] Arrayreturns:
(
[0] => 23
[1] => 6
) [/php]
ページ階層(ID付き)を取得します。
Given the a page hierarchy (with IDs):
- About (447)
- Child Page (448)
戻り値
[php] Arrayreturns:
(
[0] => 447
) [/php]
変更ログ
Since: 3.1.0
関連ファンクションタグ
Page Tags: get_all_page_ids(), get_ancestors(), get_page(), get_page_link(), get_page_by_path(), get_page_by_title(), get_page_children(), get_page_hierarchy(), get_page_uri(), get_pages(), is_page(), page_uri_index(), wp_list_pages(), wp_page_menu()
コメント