-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy patharchive.php
63 lines (58 loc) · 1.85 KB
/
archive.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
<?php
/**
* The template for displaying Archive pages.
*
* Used to display archive-type pages if nothing more specific matches a query.
* For example, puts together date-based pages if no date.php file exists.
*
* Learn more: http://codex.wordpress.org/Template_Hierarchy
*
* 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() ): ?>
<?php if ( is_day() ) : ?>
<h1>
<?php echo __('Archive', 'wp_babobski'); ?>: <?php echo get_the_date( 'D M Y' ); ?>
</h1>
<?php elseif ( is_month() ) : ?>
<h1>
<?php echo __('Archive', 'wp_babobski'); ?>: <?php echo get_the_date( 'M Y' ); ?>
</h1>
<?php elseif ( is_year() ) : ?>
<h1>
<?php echo __('Archive', 'wp_babobski'); ?>: <?php echo get_the_date( 'Y' ); ?>
</h1>
<?php else : ?>
<h1>
<?php echo __('Archive', 'wp_babobski'); ?>
</h1>
<?php endif; ?>
<ul class="media-list">
<?php while ( have_posts() ) : the_post(); ?>
<li class="media">
<div class="media-body">
<h2 class="media-heading">
<a href="<?php esc_url( the_permalink() ); ?>" title="<?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', 'wp_babobski'), __('1 Comment', 'wp_babobski'), __('% Comments', 'wp_babobski')); ?>
<?php the_content(); ?>
</div>
</li>
<?php endwhile; ?>
</ul>
<?php else: ?>
<h1>
<?php echo __('No posts to display', 'wp_babobski'); ?>
</h1>
<?php endif; ?>
<?php BsWp::get_template_parts( array( 'parts/shared/footer','parts/shared/html-footer' ) ); ?>