返回介绍

get_page_children()

发布于 2017-09-10 23:42:30 字数 3802 浏览 871 评论 0 收藏 0

get_page_children( int $page_id,  array $pages )

Identify descendants of a given page ID in a list of page objects.


description

Descendants are identified from the $pages array passed to the function. No database queries are performed.


参数

$page_id

(int) (Required) Page ID.

$pages

(array) (Required) List of page objects from which descendants should be identified.


返回值

(array) List of page children.


源代码

File: wp-includes/post.php

function get_page_children( $page_id, $pages ) {
	// Build a hash of ID -> children.
	$children = array();
	foreach ( (array) $pages as $page ) {
		$children[ intval( $page->post_parent ) ][] = $page;
	}

	$page_list = array();

	// Start the search by looking at immediate children.
	if ( isset( $children[ $page_id ] ) ) {
		// Always start at the end of the stack in order to preserve original `$pages` order.
		$to_look = array_reverse( $children[ $page_id ] );

		while ( $to_look ) {
			$p = array_pop( $to_look );
			$page_list[] = $p;
			if ( isset( $children[ $p->ID ] ) ) {
				foreach ( array_reverse( $children[ $p->ID ] ) as $child ) {
					// Append to the `$to_look` stack to descend the tree.
					$to_look[] = $child;
				}
			}
		}
	}

	return $page_list;
}

更新日志

Versiondescription
1.5.1Introduced.

相关函数

Used By

  • wp-includes/post.php: get_pages()

User Contributed Notes

  1. Skip to note content You must log in to vote on the helpfulness of this noteVote results for this note: 0You must log in to vote on the helpfulness of this note Contributed by Codex

    Examples

    
    <?php
    // Set up the objects needed
    $my_wp_query = new WP_Query();
    $all_wp_pages = $my_wp_query->query(array('post_type' => 'page'));
    
    // Get the page as an Object
    $portfolio =  get_page_by_title('Portfolio');
    
    // Filter through all pages and find Portfolio's children
    $portfolio_children = get_page_children( $portfolio->ID, $all_wp_pages );
    
    // echo what we get back from WP to the browser
    echo '<pre>' . print_r( $portfolio_children, true ) . '</pre>';
    ?>
    
  2. In one of my Hierarchical Custom Post Type (locations) I did @bhlarsen’s method, and in some extent it’s returning false children. So I did it my way:

    ID;

    //Instead of calling and passing query parameter differently, we’re doing it exclusively
    $all_locations = get_pages( array(
    ‘post_type’ => ‘locations’, //here’s my CPT
    ‘post_status’ => array( ‘publish’, ‘pending’ ) //my custom choice
    ) );

    //Using the function
    $inherited_locations = get_page_children( $location_parent_id, $all_locations );

    // echo what we get back from WP to the browser (@bhlarsen’s part :) )
    echo ” . print_r( $inherited_locations, true ) . ”;
    ?>

    It’s giving me the correct children.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文