mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-03 06:57:35 +01:00
Allow custom page walker classes. Props MikeLittle. fixes #8673
git-svn-id: http://svn.automattic.com/wordpress/trunk@10230 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
5183a7e189
commit
6b1b25c6d8
@ -719,7 +719,11 @@ function wp_page_menu( $args = array() ) {
|
||||
* @see Walker_Page::walk() for parameters and return description.
|
||||
*/
|
||||
function walk_page_tree($pages, $depth, $current_page, $r) {
|
||||
$walker = new Walker_Page;
|
||||
if ( empty($r['walker']) )
|
||||
$walker = new Walker_Page;
|
||||
else
|
||||
$walker = $r['walker'];
|
||||
|
||||
$args = array($pages, $depth, $r, $current_page);
|
||||
return call_user_func_array(array(&$walker, 'walk'), $args);
|
||||
}
|
||||
@ -732,8 +736,12 @@ function walk_page_tree($pages, $depth, $current_page, $r) {
|
||||
* @see Walker_PageDropdown::walk() for parameters and return description.
|
||||
*/
|
||||
function walk_page_dropdown_tree() {
|
||||
$walker = new Walker_PageDropdown;
|
||||
$args = func_get_args();
|
||||
if ( empty($args[2]['walker']) ) // the user's options are the third parameter
|
||||
$walker = new Walker_PageDropdown;
|
||||
else
|
||||
$walker = $args[2]['walker'];
|
||||
|
||||
return call_user_func_array(array(&$walker, 'walk'), $args);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user