Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. <ul class="default-list">
  2. <?php
  3. global $post;
  4. $args = array( 'numberposts' => 4, 'Notícias' => 'noticias' );
  5. $posts = get_posts( $args );
  6.  
  7. foreach( $posts as $post ): setup_postdata($post);
  8. ?>
  9.  
  10. <li>
  11. <div class="image">
  12. <a href="<?php the_permalink() ?>" class="image-cover" style="background-image: url('<?php the_post_thumbnail_url(); ?> ')"></a>
  13. </div>
  14.  
  15. <div class="detail">
  16. <h3><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h3>
  17. <span class="category"><?php the_category( '&bull;' ); ?></span>
  18. <p class="description"><a href="<?php the_permalink() ?>"><?php the_excerpt(); ?></a></p>
  19. <a class="see-more" href="<?php the_permalink() ?>">Ver mais</a>
  20. </div>
  21. </li>
  22.  
  23. <?php
  24. endforeach;
  25. ?>
  26. </ul>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement