wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
wp_find_hierarchy_loop is private and should not be used in themes or plugins directly.
wp_find_hierarchy_loop › WordPress Function
Seit3.1.0
Veraltetn/v
› wp_find_hierarchy_loop ( $callback, $start, $start_parent, $callback_args = array() )
Zugriff: |
|
Parameter: (4) |
|
Gibt zurück: |
|
Definiert in: |
|
Codex: |
Finds hierarchy loops using a callback function that maps object IDs to parent IDs.
Quellcode
function wp_find_hierarchy_loop( $callback, $start, $start_parent, $callback_args = array() ) { $override = is_null( $start_parent ) ? array() : array( $start => $start_parent ); $arbitrary_loop_member = wp_find_hierarchy_loop_tortoise_hare( $callback, $start, $override, $callback_args ); if ( ! $arbitrary_loop_member ) { return array(); } return wp_find_hierarchy_loop_tortoise_hare( $callback, $arbitrary_loop_member, $override, $callback_args, true ); }