-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathtag.php
More file actions
41 lines (39 loc) · 1.2 KB
/
Copy pathtag.php
File metadata and controls
41 lines (39 loc) · 1.2 KB
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
<?php
/**
* The template used to display Tag Archive pages
*
* Please see /external/bootstrap-utilities.php for info on BsWp::get_template_parts()
*
* @package WordPress
* @subpackage Bootstrap 3.3.7
* @autor Babobski
*/
?>
<?php BsWp::get_template_parts( array( 'parts/shared/html-header', 'parts/shared/header' ) ); ?>
<?php if ( have_posts() ): ?>
<h2>
<?php echo __('Tag Archive:', 'wp_babobski') ?> <?php echo single_tag_title( '', false ); ?>
</h2>
<ol>
<?php while ( have_posts() ) : the_post(); ?>
<li>
<article>
<h2>
<a href="<?php esc_url( the_permalink() ); ?>" title="Permalink to <?php the_title(); ?>" rel="bookmark">
<?php the_title(); ?>
</a>
</h2>
<time datetime="<?php the_time( 'Y-m-d' ); ?>" pubdate>
<?php the_date(); ?> <?php the_time(); ?>
</time> <?php comments_popup_link('Leave a Comment', '1 Comment', '% Comments'); ?>
<?php the_content(); ?>
</article>
</li>
<?php endwhile; ?>
</ol>
<?php else: ?>
<h2>
<?php echo __('No posts to display in', 'wp_babobski') ?> <?php echo single_tag_title( '', false ); ?>
</h2>
<?php endif; ?>
<?php BsWp::get_template_parts( array( 'parts/shared/footer','parts/shared/html-footer' ) ); ?>