EstudioJuridicoAlmagro_Web/www/wpv_common/widgets/tpl/subpages-widget.php
2013-03-01 18:06:10 +00:00

22 lines
323 B
PHP

<?php
echo $before_widget;
if($title)
echo $before_title . $title . $after_title;
?>
<ul>
<?php
wp_list_pages(array(
'title_li' => '',
'echo' => 1,
'child_of' => $parent,
'sort_column' => $sortby,
'exclude' => $exclude,
'depth' => 1
));
?>
</ul>
<?php
echo $after_widget;