Skip to content

Instantly share code, notes, and snippets.

@claudiosanches
Created September 14, 2012 03:00
Show Gist options
  • Save claudiosanches/3719555 to your computer and use it in GitHub Desktop.
Save claudiosanches/3719555 to your computer and use it in GitHub Desktop.
Categorias
<?php get_header(); ?>
<div id="primary">
<section id="content" role="main">
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<article <?php post_class(); ?>>
<img src="<?php echo get_option( 'url' );?>/<?php echo get_post_meta( $post->ID, 'post-thumbnails' ,true );?>"
title="<?php the_title();?>" alt="<?php the_title();?>"
width="300px" height="255px">
<a href="<?php the_permalink()?>" title="<?php the_title();?>" alt="<?php the_title();?>"><?php the_title();?></a>
<article>
<?php endwhile; ?>
<?php if ( function_exists( 'wp_pagenavi' ) ) { wp_pagenavi(); } ?>
<?php else : ?>
<article id="post-0" class="post no-results not-found">
<header class="entry-header">
<h1 class="entry-title"><?php _e( 'Nada Encontrado', '_base' ); ?></h1>
</header><!-- .entry-header -->
<div class="entry-content">
<p><?php _e( 'Nenhum resultado foi encontrado para o arquivo solicitado. Talvez uma busca possa lhe ajudar a encontrar algum artigo relacionado.', '_base' ); ?></p>
<?php get_search_form(); ?>
</div><!-- .entry-content -->
</article><!-- .no-results -->
<?php endif; ?>
</section><!-- #content -->
</div><!-- #primary -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment