?
GR0V Shell
GR0V shell
Linux www.koreapackagetour.com 2.6.32-042stab145.3 #1 SMP Thu Jun 11 14:05:04 MSK 2020 x86_64
<?php
/**
* Template Name: Sitemap
* Description: Displays an HTML-based sitemap for your site.
*
* @since admired 1.0
*/
get_header(); ?>
<section id="primary">
<div id="content" role="main">
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="entry-header">
<h1 class="entry-title"><?php the_title(); ?></h1>
</header><!-- .entry-header -->
<div class="admired-sitemap-heading">
<h3>Pages</h3>
</div>
<div class="admired-sitemap-body">
<ul><?php wp_list_pages("title_li=" ); ?></ul>
</div>
<div class="admired-sitemap-heading">
<h3>Feeds</h3>
</div>
<div class="admired-sitemap-body">
<ul>
<li><a title="Full content" href="feed:<?php bloginfo('rss2_url'); ?>">Main RSS</a></li>
<li><a title="Comment Feed" href="feed:<?php bloginfo('comments_rss2_url'); ?>">Comment Feed</a></li>
</ul>
</div>
<div class="admired-sitemap-heading">
<h3>Categories</h3>
</div>
<div class="admired-sitemap-body">
<ul><?php wp_list_categories('sort_column=name&optioncount=1&hierarchical=0'); ?></ul>
</div>
<div class="admired-sitemap-heading">
<h3>Blog Posts:</h3>
</div>
<div class="admired-sitemap-body">
<ul><?php $archive_query = new WP_Query('showposts=1000&cat=-8');
while ($archive_query->have_posts()) : $archive_query->the_post(); ?>
<li>
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a>
(<?php comments_number('0', '1', '%'); ?>)
</li>
<?php endwhile; ?>
</ul>
</div>
<div class="admired-sitemap-heading">
<h3>Archives</h3>
</div>
<div class="admired-sitemap-body">
<ul>
<?php wp_get_archives('type=monthly&show_post_count=true'); ?>
</ul>
</div>
<footer class="entry-meta">
<?php edit_post_link( __( 'Edit', 'admired' ), '<span class="edit-link">', '</span>' ); ?>
</footer><!-- .entry-meta -->
</article><!-- #post-<?php the_ID(); ?> -->
</div><!-- #content -->
</section><!-- #primary -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
T1KUS90T