Created
September 16, 2009 02:41
-
-
Save juarezpaf/187829 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php is_tag(); ?> | |
<?php if (have_posts()) : ?> | |
<?php $post = $posts[0]; // Hack. Set $post so that the_date() works. ?> | |
<?php /* If this is a category archive */ if (is_category()) { ?> | |
<h2>Notícias por categoria ‘<?php single_cat_title(); ?>’</h2> | |
<?php /* If this is a tag archive */ } elseif( is_tag() ) { ?> | |
<h2>Notícias com a Tag ‘<?php single_tag_title(); ?>’</h2> | |
<?php /* If this is a daily archive */ } elseif (is_day()) { ?> | |
<h2>Notícias publicadas em <?php the_time('F jS, Y'); ?></h2> | |
<?php /* If this is a monthly archive */ } elseif (is_month()) { ?> | |
<h2>Notícias publicas em <?php the_time('F, Y'); ?></h2> | |
<?php /* If this is a yearly archive */ } elseif (is_year()) { ?> | |
<h2>Notícias publicadas no ano: <?php the_time('Y'); ?></h2> | |
<?php /* If this is an author archive */ } elseif (is_author()) { ?> | |
<h2>Notícias por Autor</h2> | |
<?php /* If this is a paged archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?> | |
<h2>Notícias do Site</h2> | |
<?php } ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment