my code, lost....
if(function_exists('wpdt_list_pages')){
if($post->post_parent) {
print ('second level');
$children = wpdt_list_pages(array(
'title_li' => '',
'child_of' => $post->post_parent,
'echo' => 0,
'oclinks' => 0,
'sort_column' => 'menu_order',
'showselection' => 1,
'opentoselection' => 1,
'opento' => $post->ID,
'uselines' => 0,
'cache' => 0
));
} else if ($post->post_parent->post_parent) {
print ('third level');
$children = wpdt_list_pages(array(
'title_li' => '',
'child_of' => $post->post_parent,
'echo' => 0,
'oclinks' => 0,
'sort_column' => 'menu_order',
'showselection' => 1,
'opentoselection' => 1,
'opento' => $post->ID,
'uselines' => 0,
'cache' => 0
));
} else {
print ('top level');
$children = wpdt_list_pages(array(
'title_li' => '',
'parent' => $post->post_parent,
'echo' => 0,
'oclinks' => 0,
'sort_column' => 'menu_order',
'showselection' => 1,
'opentoselection' => 1,
'opento' => $post->ID,
'uselines' => 0,
'exclude' => '171',
'cache' => 0
));
}
if ($children) {
echo $children;
}
}