Skip to content

Instantly share code, notes, and snippets.

@claudiosanches
Created September 5, 2012 15:58
Show Gist options
  • Save claudiosanches/3638977 to your computer and use it in GitHub Desktop.
Save claudiosanches/3638977 to your computer and use it in GitHub Desktop.
Wordpress custom loop
<?php
// Inicia uma contagem.
$n = 0;
// Cria o loop.
if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php if ($n < 2) : ?>
<!-- Seu código para aparecerem as imagens menores -->
<?php else : ?>
<!-- Seu código padrão -->
<?php endif; ?>
<?php
// aumenta o número da contagem.
$n++;
endwhile;
endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment