content.php 617 B

12345678910111213141516171819202122
  1. <article>
  2. <!-- Chamada aqui de determinada forma -->
  3. <h1><a href="<?php the_permalink();?>"><?php the_title(); ?></a></h1>
  4. <!-- mostra o tipo do post -->
  5. <?php // echo get_post_format(); ?>
  6. <?php
  7. // check if the post has a Post Thumbnail assigned to it.
  8. if ( has_post_thumbnail() ) {
  9. // the_post_thumbnail('thumbnail');
  10. the_post_thumbnail(array(500, 150));
  11. }
  12. ?>
  13. <p>Publicado em: <?php get_the_date(); ?> por <?php the_author_posts_link(); ?></p>
  14. <p>Categorias: <?php the_category(' '); ?></p>
  15. <p><?php the_tags('Tags: ', ', '); ?></p>
  16. <p><?php the_content(); ?></p>
  17. </article>