-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchive.php
74 lines (64 loc) · 2.53 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
64
65
66
67
68
69
70
71
72
73
74
<?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.
*
* If you'd like to further customize these archive views, you may create a
* new template file for each specific one.
*
* Learn more: http://codex.wordpress.org/Template_Hierarchy
*
* @since 1.0.0
*/
get_header(); ?>
<div class="container">
<div class="row">
<section id="primary" <?php bavotasan_primary_attr(); ?>>
<?php if ( have_posts() ) : ?>
<header id="archive-header">
<?php if ( is_author() ) echo get_avatar( get_the_author_meta( 'ID' ), 80 ); ?>
<h1 class="page-title">
<?php if ( is_category() ) : ?>
<?php echo single_cat_title( '', false ); ?>
<?php elseif ( is_author() ) : ?>
<?php printf( __( '%s', 'arcade' ), get_the_author_meta( 'display_name', get_query_var( 'author' ) ) ); ?>
<?php elseif ( is_tag() ) : ?>
<?php printf( __( 'Tag Archive for %s', 'arcade' ), single_tag_title( '', false ) ); ?>
<?php elseif ( is_day() ) : ?>
<?php printf( __( 'Daily Archives: %s', 'arcade' ), get_the_date() ); ?>
<?php elseif ( is_month() ) : ?>
<?php printf( __( 'Monthly Archives: %s', 'arcade' ), get_the_date( _x( 'F Y', 'monthly archives date format', 'arcade' ) ) ); ?>
<?php elseif ( is_year() ) : ?>
<?php printf( __( 'Yearly Archives: %s', 'arcade' ), get_the_date( _x( 'Y', 'yearly archives date format', 'arcade' ) ) ); ?>
<?php else : ?>
<?php _e( 'Blog Archives', 'arcade' ); ?>
<?php endif; ?>
</h1><!-- .page-title -->
<?php
$description = term_description();
if ( is_author() )
$description = get_the_author_meta( 'description' );
if ( $description )
printf( '<h2 class="archive-meta">%s</h2>', $description );
?>
</header><!-- #archive-header -->
<?php
while ( have_posts() ) : the_post();
/* Include the post format-specific template for the content. If you want to
* this in a child theme then include a file called called content-___.php
* (where ___ is the post format) and that will be used instead.
*/
get_template_part( 'content', get_post_format() );
endwhile;
bavotasan_pagination();
else :
get_template_part( 'content', 'none' );
endif;
?>
</section><!-- #primary.c8 -->
<?php get_sidebar(); ?>
</div>
</div>
<?php get_footer(); ?>