12345678910111213141516171819202122 |
- <article>
- <!-- Chamada aqui de determinada forma -->
- <h1><a href="<?php the_permalink();?>"><?php the_title(); ?></a></h1>
-
- <!-- mostra o tipo do post -->
- <?php // echo get_post_format(); ?>
- <?php
- // check if the post has a Post Thumbnail assigned to it.
- if ( has_post_thumbnail() ) {
- // the_post_thumbnail('thumbnail');
- the_post_thumbnail(array(500, 150));
- }
- ?>
- <p>Publicado em: <?php get_the_date(); ?> por <?php the_author_posts_link(); ?></p>
- <p>Categorias: <?php the_category(' '); ?></p>
- <p><?php the_tags('Tags: ', ', '); ?></p>
- <p><?php the_content(); ?></p>
- </article>
|