Advertisement
Guest User

loop.php

a guest
Jan 26th, 2012
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.53 KB | None | 0 0
  1. <?php if ( ! is_single() ) {?>
  2.  
  3. <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
  4. <!--Conteúdo do loop para single-->
  5. <?php endwhile; else: ?>
  6. <p><?php _e('Desculpe, nenhuma postagem para estes critérios.'); ?></p>
  7. <?php endif; ?>
  8.  
  9. <?php }?>
  10.  
  11. <?php if ( ! is_category() ) {?>
  12.  
  13. <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
  14. <!--Conteúdo do loop pra categoria-->
  15. <?php endwhile; else: ?>
  16. <p><?php _e('Desculpe, nenhuma postagem para estes critérios.'); ?></p>
  17. <?php endif; ?>
  18.  
  19. <?php }?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement