_page_traverse_name

Definition:
function _page_traverse_name( $page_id, &$children, &$result ){

function to traverse and return all the nested children post names of a root page.
$children contains parent-children relations

Parameters

  • $page_id
  • &$children
  • &$result

Source code

function _page_traverse_name( $page_id, &$children, &$result ){

	if ( isset( $children[ $page_id ] ) ){

		foreach( (array)$children[ $page_id ] as $child ) {

			$result[ $child->ID ] = $child->post_name;

			_page_traverse_name( $child->ID, $children, $result );

		}

	}

}

4353

No comments yet... Be the first to leave a reply!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: