pluto3/tag.php
2017-09-19 16:23:41 +08:00

65 lines
2.0 KiB
PHP

<?php
/**
* The template for displaying Tag pages
*
* Used to display archive-type pages for posts in a tag.
*
* @link http://codex.wordpress.org/Template_Hierarchy
*
* @package WordPress
* @since Pluto 1.0
*/
get_header(); ?>
<div class="main-content-w">
<div class="main-content-m">
<?php os_the_primary_sidebar('left'); ?>
<div class="main-content-i">
<?php if ( have_posts() ) : ?>
<header class="archive-header">
<h3 class="archive-title"><?php printf( __( 'Tag Archives: %s', 'pluto' ), single_tag_title( '', false ) ); ?></h3>
<?php
// Show an optional term description.
$term_description = term_description();
if ( ! empty( $term_description ) ) :
printf( '<div class="taxonomy-description">%s</div>', $term_description );
endif;
?>
</header><!-- .archive-header -->
<?php require_once(get_template_directory() . '/inc/set-layout-vars.php') ?>
<div class="content side-padded-content">
<div class="index-isotope <?php echo $isotope_class; ?>" data-layout-mode="<?php echo $layout_mode; ?>">
<?php
$os_current_box_counter = 1; $os_ad_block_counter = 0;
// Start the Loop.
while ( have_posts() ) : the_post();
/*
* Include the post format-specific template for the content. If you want to
* use 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( $template_part, get_post_format() );
os_ad_between_posts();
endwhile; ?>
</div>
<?php require_once(get_template_directory() . '/inc/isotope-navigation.php') ?>
</div>
<?php
else :
// If no content, include the "No posts found" template.
get_template_part( 'content', 'none' );
endif;
?>
</div>
<?php os_the_primary_sidebar('right'); ?>
</div>
<?php os_footer(); ?>
</div>
<?php
get_footer();