Skip to content

Instantly share code, notes, and snippets.

@juarezpaf
Created September 16, 2009 02:41
Show Gist options
  • Save juarezpaf/187829 to your computer and use it in GitHub Desktop.
Save juarezpaf/187829 to your computer and use it in GitHub Desktop.
<?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 &#8216;<?php single_cat_title(); ?>&#8217;</h2>
<?php /* If this is a tag archive */ } elseif( is_tag() ) { ?>
<h2>Notícias com a Tag &#8216;<?php single_tag_title(); ?>&#8217;</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