\n");
echo("
" . __('Pages','weaver-xtreme') . "
\n");
$args = array('title_li' => false);
if (weaverx_getopt('_sitemap_exclude_pages') != '')
$args['exclude'] = str_replace(' ','', weaverx_getopt('_sitemap_exclude_pages'));
wp_list_pages($args);
echo("
\n");
echo("
" .__('Posts','weaver-xtreme') . "
\n");
wp_get_archives(array('type' => 'monthly', 'show_post_count' => true));
echo("
\n");
if (!weaverx_getopt('post_hide_categories')) {
echo("
" . __('Categories','weaver-xtreme') . "
\n");
wp_list_categories(array('show_count' => true, 'use_desc_for_title' => true, 'title_li' => false));
echo("
\n");
}
if ( ! weaverx_getopt( 'post_hide_tags' ) ) {
echo("
\n");
}
if ( ! weaverx_getopt( 'post_hide_author' ) ) {
echo("
" . __('Authors','weaver-xtreme') ."
\n");
wp_list_authors(array('exclude_admin' => false, 'optioncount' => true, 'title_li' => false));
echo("
\n");
}
echo("
\n");
?>