Advertisement
Guest User

Untitled

a guest
Dec 18th, 2014
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. <section class="notices">
  2. <section class="title">
  3. <h1>Notícias e <strong>Inovações</strong></h1>
  4. </section>
  5. <?php $notices = new WP_Query('cat=17&posts_per_page=3');?>
  6. <?php $i = 0;if ($notices->have_posts()) :?>
  7. <?php while ($notices->have_posts()) : the_post(); ?>
  8. <?php
  9. $class = $i == 1 ? 'full' : 'col';
  10.  
  11. ?>
  12. <article class="<?= $class;?>">
  13. <img src="<?= wp_get_attachment_url( get_post_thumbnail_id($post->ID) );?>" width="100%" alt="">
  14. <section class="description">
  15. <h1><?php the_title();?></h1>
  16. </section>
  17. </article>
  18. <?php $i++;endwhile;?>
  19. <?php endif;
  20. wp_reset_query();
  21. ?>
  22. <a href="<?php echo get_category_link(17);?>" class="viewMore">Ver todas as notícias</a>
  23. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement