content-destaque.php 578 B

1234567891011121314151617181920
  1. <article class="noticia-destaque">
  2. <div class="miniatura">
  3. <a href="<?php the_permalink();?>">
  4. <?php
  5. if ( has_post_thumbnail() ) {
  6. the_post_thumbnail('large', array('class' => 'img-responsive'));
  7. }
  8. ?>
  9. </a>
  10. </div>
  11. <h1>
  12. <a href="<?php the_permalink();?>">
  13. <?php the_title(); ?>
  14. </a>
  15. </h1>
  16. <p>por <span><?php the_author_posts_link(); ?></span> em <span><?php the_category(' '); ?></span> <?php the_tags('Tags: ', ', '); ?> </p>
  17. <p><?php echo get_the_date(); ?></p>
  18. <p><?php the_excerpt(); ?></p>
  19. </article>