]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-content/themes/twentytwelve/tag.php
WordPress 4.0
[autoinstalls/wordpress.git] / wp-content / themes / twentytwelve / tag.php
1 <?php
2 /**
3  * The template for displaying Tag pages
4  *
5  * Used to display archive-type pages for posts in a tag.
6  *
7  * @link http://codex.wordpress.org/Template_Hierarchy
8  *
9  * @package WordPress
10  * @subpackage Twenty_Twelve
11  * @since Twenty Twelve 1.0
12  */
13
14 get_header(); ?>
15
16         <section id="primary" class="site-content">
17                 <div id="content" role="main">
18
19                 <?php if ( have_posts() ) : ?>
20                         <header class="archive-header">
21                                 <h1 class="archive-title"><?php printf( __( 'Tag Archives: %s', 'twentytwelve' ), '<span>' . single_tag_title( '', false ) . '</span>' ); ?></h1>
22
23                         <?php if ( tag_description() ) : // Show an optional tag description ?>
24                                 <div class="archive-meta"><?php echo tag_description(); ?></div>
25                         <?php endif; ?>
26                         </header><!-- .archive-header -->
27
28                         <?php
29                         /* Start the Loop */
30                         while ( have_posts() ) : the_post();
31
32                                 /*
33                                  * Include the post format-specific template for the content. If you want to
34                                  * this in a child theme then include a file called called content-___.php
35                                  * (where ___ is the post format) and that will be used instead.
36                                  */
37                                 get_template_part( 'content', get_post_format() );
38
39                         endwhile;
40
41                         twentytwelve_content_nav( 'nav-below' );
42                         ?>
43
44                 <?php else : ?>
45                         <?php get_template_part( 'content', 'none' ); ?>
46                 <?php endif; ?>
47
48                 </div><!-- #content -->
49         </section><!-- #primary -->
50
51 <?php get_sidebar(); ?>
52 <?php get_footer(); ?>