2013-09-02 23:21:09 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2013-10-12 00:02:11 +02:00
|
|
|
* The template for displaying Post Format pages
|
2013-09-02 23:21:09 +02:00
|
|
|
*
|
|
|
|
* Used to display archive-type pages for posts with a post format.
|
|
|
|
* If you'd like to further customize these Post Format views, you may create a
|
|
|
|
* new template file for each specific one.
|
|
|
|
*
|
2014-09-29 15:28:16 +02:00
|
|
|
* @todo https://core.trac.wordpress.org/ticket/23257: Add plural versions of Post Format strings
|
2013-12-05 18:57:09 +01:00
|
|
|
* and remove plurals below.
|
2013-12-05 19:31:11 +01:00
|
|
|
*
|
2015-04-12 23:29:32 +02:00
|
|
|
* @link https://codex.wordpress.org/Template_Hierarchy
|
2013-09-02 23:21:09 +02:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Twenty_Fourteen
|
2013-10-12 00:02:11 +02:00
|
|
|
* @since Twenty Fourteen 1.0
|
2013-09-02 23:21:09 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
get_header(); ?>
|
|
|
|
|
|
|
|
<section 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_tax( 'post_format', 'post-format-aside' ) ) :
|
|
|
|
_e( 'Asides', 'twentyfourteen' );
|
|
|
|
|
|
|
|
elseif ( is_tax( 'post_format', 'post-format-image' ) ) :
|
2013-11-07 00:54:10 +01:00
|
|
|
_e( 'Images', 'twentyfourteen' );
|
2013-09-02 23:21:09 +02:00
|
|
|
|
|
|
|
elseif ( is_tax( 'post_format', 'post-format-video' ) ) :
|
|
|
|
_e( 'Videos', 'twentyfourteen' );
|
|
|
|
|
2013-11-05 22:52:09 +01:00
|
|
|
elseif ( is_tax( 'post_format', 'post-format-audio' ) ) :
|
|
|
|
_e( 'Audio', 'twentyfourteen' );
|
|
|
|
|
2013-09-02 23:21:09 +02:00
|
|
|
elseif ( is_tax( 'post_format', 'post-format-quote' ) ) :
|
|
|
|
_e( 'Quotes', 'twentyfourteen' );
|
|
|
|
|
|
|
|
elseif ( is_tax( 'post_format', 'post-format-link' ) ) :
|
|
|
|
_e( 'Links', 'twentyfourteen' );
|
|
|
|
|
|
|
|
elseif ( is_tax( 'post_format', 'post-format-gallery' ) ) :
|
|
|
|
_e( 'Galleries', 'twentyfourteen' );
|
|
|
|
|
|
|
|
else :
|
|
|
|
_e( 'Archives', 'twentyfourteen' );
|
|
|
|
|
|
|
|
endif;
|
|
|
|
?>
|
|
|
|
</h1>
|
|
|
|
</header><!-- .archive-header -->
|
|
|
|
|
|
|
|
<?php
|
2013-12-03 18:06:11 +01:00
|
|
|
// Start the Loop.
|
|
|
|
while ( have_posts() ) : the_post();
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Include the post format-specific template for the content. If you want to
|
2017-09-08 20:13:43 +02:00
|
|
|
* use this in a child theme, then include a file called content-___.php
|
2013-12-03 18:06:11 +01:00
|
|
|
* (where ___ is the post format) and that will be used instead.
|
|
|
|
*/
|
2013-09-02 23:21:09 +02:00
|
|
|
get_template_part( 'content', get_post_format() );
|
2013-12-03 18:06:11 +01:00
|
|
|
|
2013-09-02 23:21:09 +02:00
|
|
|
endwhile;
|
2013-12-03 18:06:11 +01:00
|
|
|
// Previous/next page navigation.
|
2013-09-02 23:21:09 +02:00
|
|
|
twentyfourteen_paging_nav();
|
|
|
|
|
|
|
|
else :
|
2013-12-03 18:06:11 +01:00
|
|
|
// If no content, include the "No posts found" template.
|
2013-09-02 23:21:09 +02:00
|
|
|
get_template_part( 'content', 'none' );
|
|
|
|
|
|
|
|
endif;
|
|
|
|
?>
|
|
|
|
</div><!-- #content -->
|
|
|
|
</section><!-- #primary -->
|
|
|
|
|
|
|
|
<?php
|
2013-11-15 20:01:09 +01:00
|
|
|
get_sidebar( 'content' );
|
2013-09-02 23:21:09 +02:00
|
|
|
get_sidebar();
|
|
|
|
get_footer();
|