Ok .. got it .. it's Folder Category List and not Folder Page List .. my fault!
Anyway here's some code to implement in your child theme's functions.php:
function widget_thematic_foldercategorylist($args) {
extract($args);
if ( empty($title) )
$title = __('Folder Category List', 'thematic');
echo $before_widget;
echo $before_title . $title . $after_title; ?>
<ul>
<?php wswwpx_fold_category_list ('hide_empty=0&title_li=&exclude=1,4,6,9,11,14,17,26,29,236,251,264'); ?>
</ul>
<?php echo $after_widget;
}
register_sidebar_widget(__('Folder Category List', 'thematic'), 'widget_thematic_foldercategorylist', null, 'foldercategorylist');
Tested and approved!
I haven't coded a user interface for the widget. If you need to change the title, change the line $title = __(...
If you want to change the parameters for the function call, change the line
<?php wswwpx_fold_category_list (...
Cheers,
Chris