<?php /** * The template for displaying Archive pages. * * Learn more: http://codex.wordpress.org/Template_Hierarchy * * @package Suits * @since Suits 1.0 */ get_header(); ?> <div id="primary" class="content-area"> <div id="content" class="site-content" role="main"> <?php if ( have_posts() ) : ?> <header class="archive-header"> <h1 class="archive-title"> <?php if ( is_category() ) : single_cat_title(); elseif ( is_tag() ) : single_tag_title(); elseif ( is_author() ) : printf( __( 'Author: %s', 'suits' ), '<span class="vcard">' . get_the_author() . '</span>' ); elseif ( is_day() ) : printf( __( 'Day: %s', 'poking' ), '<span>' . get_the_date() . '</span>' ); elseif ( is_month() ) : printf( __( 'Month: %s', 'suits'), '<span>' . get_the_date( _x( 'F Y', 'monthly archives date format', 'suits' ) ) . '</span>' ); elseif ( is_year() ) : printf( __( 'Year: %s', 'suits' ), '<span>' . get_the_date( _x( 'Y', 'yearly archives date format', 'suits' ) ) . '</span>' ); elseif ( is_tax( 'post_format', 'post-format-aside' ) ) : _e( 'Asides', 'suits' ); elseif ( is_tax( 'post_format', 'post-format-gallery' ) ) : _e( 'Galleries', 'suits' ); elseif ( is_tax( 'post_format', 'post-format-image' ) ) : _e( 'Images', 'suits' ); elseif ( is_tax( 'post_format', 'post-format-video' ) ) : _e( 'Videos', 'suits' ); elseif ( is_tax( 'post_format', 'post-format-quote' ) ) : _e( 'Quotes', 'suits' ); elseif ( is_tax( 'post_format', 'post-format-link' ) ) : _e( 'Links', 'suits' ); elseif ( is_tax( 'post_format', 'post-format-status' ) ) : _e( 'Statuses', 'suits' ); elseif ( is_tax( 'post_format', 'post-format-audio' ) ) : _e( 'Audios', 'suits' ); elseif ( is_tax( 'post_format', 'post-format-chat' ) ) : _e( 'Chats', 'suits' ); else : _e( 'Archives', 'suits' ); endif; ?> </h1> <?php // Show an optional term description. $term_description = term_description(); if ( ! empty( $term_description ) ) : printf( '<div class="archive-meta">%s</div>', $term_description ); endif; // If a user has filled out their description, show a bio on their entries. if ( is_author() && get_the_author_meta( 'description' ) ) : ?> <div class="archive-meta"> <p><?php the_author_meta( 'description' ); ?></p> </div><!-- .archive-meta --> <?php endif; ?> </header><!-- .archive-header --> <?php /* The loop */ while ( have_posts() ) : the_post(); get_template_part( 'content', get_post_format() ); endwhile; suits_nav('nav-below'); else : get_template_part( 'content', 'none' ); endif; ?> </div><!-- #content .site-content --> </div><!-- #primary .content-area --> <?php get_sidebar(); ?> <?php get_footer(); ?>