EstudioJuridicoAlmagro_Web/www/wpv_common/widgets/tpl/subpages-widget.php
david f72df580c3 - Importación inicial
- Ticket 1166 -> Orden de los idiomas ES FR EN RU

git-svn-id: https://192.168.0.254/svn/Proyectos.EstudioJuridicoAlmagro_Web/trunk@2 c22fe52d-42d7-ba4f-95f7-33effcf65713
2013-02-27 15:39:05 +00:00

22 lines
302 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;