'; wp_list_pages("title_li=&sort_order=$sort_ord&sort_column=$sort_col&depth=$depth&exclude=$exclude"); echo '' . $after_widget; } function widget_custom_pages_control() { $options = $newoptions = get_option("widget_custom_pages"); if ( $_POST['custom-pages-submit'] ) { $newoptions['depth'] = strip_tags(stripslashes($_POST['custom-pages-depth'])); $newoptions['title'] = strip_tags(stripslashes($_POST['custom-pages-title'])); $newoptions['sort_col'] = strip_tags(stripslashes($_POST['custom-pages-sort-col'])); $newoptions['sort_ord'] = strip_tags(stripslashes($_POST['custom-pages-sort-ord'])); $newoptions['exclude'] = strip_tags(stripslashes($_POST['custom-pages-exclude'])); } if ( $options != $newoptions ) { $options = $newoptions; update_option('widget_custom_pages', $options); } $depth = wp_specialchars($options['depth']); $title = wp_specialchars($options['title']); $sort_col = wp_specialchars($options['sort_col']); $sort_ord = wp_specialchars($options['sort_ord']); $exclude = wp_specialchars($options['exclude']); ?>