-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsitemap.php
88 lines (68 loc) · 2.45 KB
/
sitemap.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?php
// Exit if accessed directly
if( !defined( 'ABSPATH' ) ) {
exit;
}
/**
* Sitemap Template
*
Template Name: Sitemap
*
* @file sitemap.php
* @package Responsive
* @author Emil Uzelac
* @copyright 2003 - 2014 CyberChimps
* @license license.txt
* @version Release: 1.0
* @filesource wp-content/themes/responsive/sitemap.php
* @link http://codex.wordpress.org/Templates
* @since available since Release 1.0
*/
?>
<?php get_header(); ?>
<div id="content-sitemap" class="grid col-940">
<?php get_template_part( 'loop-header' ); ?>
<?php if( have_posts() ) : ?>
<?php while( have_posts() ) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<h1 class="post-title"><?php the_title(); ?></h1>
<div class="post-entry">
<div id="widgets">
<div class="grid col-300">
<div class="widget-title"><h3><?php _e( 'Categories', 'responsive' ); ?></h3></div>
<ul><?php wp_list_categories( 'sort_column=name&optioncount=1&hierarchical=0&title_li=' ); ?></ul>
</div>
<!-- end of .col-300 -->
<div class="grid col-300">
<div class="widget-title"><h3><?php _e( 'Latest Posts', 'responsive' ); ?></h3></div>
<ul><?php $archive_query = new WP_Query( 'posts_per_page=-1' );
while( $archive_query->have_posts() ) : $archive_query->the_post(); ?>
<li>
<a href="<?php the_permalink() ?>" rel="bookmark"
title="<?php printf( __( 'Permanent Link to %s', 'responsive' ), the_title_attribute( 'echo=0' ) ); ?>"><?php the_title(); ?></a>
</li>
<?php endwhile; ?>
</ul>
</div>
<!-- end of .col-300 -->
<div class="grid col-300 fit">
<div class="widget-title"><h3><?php _e( 'Pages', 'responsive' ); ?></h3></div>
<ul><?php wp_list_pages( "title_li=" ); ?></ul>
</div>
<!-- end of .col-300 fit -->
</div>
<!-- end of #widgets -->
<?php wp_link_pages( array( 'before' => '<div class="pagination">' . __( 'Pages:', 'responsive' ), 'after' => '</div>' ) ); ?>
</div>
<!-- end of .post-entry -->
<?php edit_post_link( __( 'Edit', 'responsive' ), '<div class="post-edit">', '</div>' ); ?>
</div><!-- end of #post-<?php the_ID(); ?> -->
<?php
endwhile;
get_template_part( 'loop-nav' );
else :
get_template_part( 'loop-no-posts' );
endif;
?>
</div><!-- end of #content-sitemap -->
<?php get_footer(); ?>