forked from Facens/wpbootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtag.php
More file actions
31 lines (27 loc) · 701 Bytes
/
tag.php
File metadata and controls
31 lines (27 loc) · 701 Bytes
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
<?php
/**
* The template for displaying Tag Archive pages.
*
* @package WordPress
* @subpackage wpbootstrap
* @since wpbootstrap 0.1
*/
get_header(); ?>
<section class="row">
<article class="span9 columns">
<h1 class="page-header"><?php
printf( __( 'Tag Archives: %s', 'twentyten' ), '' . single_tag_title( '', false ) . '' );
?></h1>
<?php
/* Run the loop for the tag archive to output the posts
* If you want to overload this in a child theme then include a file
* called loop-tag.php and that will be used instead.
*/
get_template_part( 'loop', 'tag' );
?>
</article>
<aside class="span3 columns">
<?php get_sidebar(); ?>
</aside>
</section>
<?php get_footer(); ?>