Definition:
function walk_category_tree() {}
Retrieve HTML list content for category list.
Source code
function walk_category_tree() {
$args = func_get_args();
// the user's options are the third parameter
if ( empty($args[2]['walker']) || !is_a($args[2]['walker'], 'Walker') )
$walker = new Walker_Category;
else
$walker = $args[2]['walker'];
return call_user_func_array(array( &$walker, 'walk' ), $args );
}
3339

February 12, 2011 


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