mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-16 07:35:39 +01:00
Improve tag archive's title. Props johnbillion. fixes #4133
git-svn-id: http://svn.automattic.com/wordpress/trunk@5250 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
44111a3ae7
commit
aab2df9f6a
@ -4,27 +4,22 @@
|
|||||||
<?php is_tag(); ?>
|
<?php is_tag(); ?>
|
||||||
<?php if (have_posts()) : ?>
|
<?php if (have_posts()) : ?>
|
||||||
|
|
||||||
<?php $post = $posts[0]; // Hack. Set $post so that the_date() works. ?>
|
<?php $post = $posts[0]; // Hack. Set $post so that the_date() works. ?>
|
||||||
<?php /* If this is a category archive */ if (is_category()) { ?>
|
<?php /* If this is a category archive */ if (is_category()) { ?>
|
||||||
<h2 class="pagetitle">Archive for the ‘<?php single_cat_title(); ?>’ Category</h2>
|
<h2 class="pagetitle">Archive for the ‘<?php single_cat_title(); ?>’ Category</h2>
|
||||||
<?php } elseif( is_tag() ) { ?>
|
<?php /* If this is a tag archive */ } elseif( is_tag() ) { ?>
|
||||||
<h2 class="pagetitle">Archive for the ‘<?php single_cat_title(); ?>’ Tag</h2>
|
<h2 class="pagetitle">Posts Tagged ‘<?php single_cat_title(); ?>’</h2>
|
||||||
<?php /* If this is a daily archive */ } elseif (is_day()) { ?>
|
<?php /* If this is a daily archive */ } elseif (is_day()) { ?>
|
||||||
<h2 class="pagetitle">Archive for <?php the_time('F jS, Y'); ?></h2>
|
<h2 class="pagetitle">Archive for <?php the_time('F jS, Y'); ?></h2>
|
||||||
|
<?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
|
||||||
<?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
|
|
||||||
<h2 class="pagetitle">Archive for <?php the_time('F, Y'); ?></h2>
|
<h2 class="pagetitle">Archive for <?php the_time('F, Y'); ?></h2>
|
||||||
|
<?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
|
||||||
<?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
|
|
||||||
<h2 class="pagetitle">Archive for <?php the_time('Y'); ?></h2>
|
<h2 class="pagetitle">Archive for <?php the_time('Y'); ?></h2>
|
||||||
|
|
||||||
<?php /* If this is an author archive */ } elseif (is_author()) { ?>
|
<?php /* If this is an author archive */ } elseif (is_author()) { ?>
|
||||||
<h2 class="pagetitle">Author Archive</h2>
|
<h2 class="pagetitle">Author Archive</h2>
|
||||||
|
<?php /* If this is a paged archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?>
|
||||||
<?php /* If this is a paged archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?>
|
|
||||||
<h2 class="pagetitle">Blog Archives</h2>
|
<h2 class="pagetitle">Blog Archives</h2>
|
||||||
|
<?php } ?>
|
||||||
<?php } ?>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="navigation">
|
<div class="navigation">
|
||||||
|
Loading…
Reference in New Issue
Block a user