diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2019-01-01 22:14:18 -0500 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2019-01-01 22:14:18 -0500 |
commit | c00d17bd8b26b20be39ada518d07bb5a07478b29 (patch) | |
tree | acd2e2e9f27dd228d918fce844077a22a7acdf33 /themes/twentyfourteen/tag.php | |
parent | Update jetpack 6.3.2 (diff) | |
download | blogs-gentoo-c00d17bd8b26b20be39ada518d07bb5a07478b29.tar.gz blogs-gentoo-c00d17bd8b26b20be39ada518d07bb5a07478b29.tar.bz2 blogs-gentoo-c00d17bd8b26b20be39ada518d07bb5a07478b29.zip |
Update twentyfourteen 2.4
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'themes/twentyfourteen/tag.php')
-rw-r--r-- | themes/twentyfourteen/tag.php | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/themes/twentyfourteen/tag.php b/themes/twentyfourteen/tag.php index 663fe5e9..5930d2cf 100644 --- a/themes/twentyfourteen/tag.php +++ b/themes/twentyfourteen/tag.php @@ -24,23 +24,22 @@ get_header(); ?> <?php // Show an optional term description. $term_description = term_description(); - if ( ! empty( $term_description ) ) : - printf( '<div class="taxonomy-description">%s</div>', $term_description ); + if ( ! empty( $term_description ) ) : + printf( '<div class="taxonomy-description">%s</div>', $term_description ); endif; ?> </header><!-- .archive-header --> <?php // 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 content-___.php - * (where ___ is the post format) and that will be used instead. - */ - get_template_part( 'content', get_post_format() ); + 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 content-___.php + * (where ___ is the post format) and that will be used instead. + */ + get_template_part( 'content', get_post_format() ); endwhile; // Previous/next page navigation. |