Advertisement
Guest User

Untitled

a guest
May 30th, 2015
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. <article id="post-<?php the_ID() ?>" <?php post_class() ?>>
  2. <header>
  3. <h1><a href="<?php the_permalink() ?>"><?php the_title() ?></a></h1>
  4. <time datetime="<?php the_time('c') ?>"><?php the_time(get_option('date_format')) ?></time>
  5. </header>
  6.  
  7. <div>
  8. <?php the_content() ?>
  9. </div>
  10.  
  11. <footer>
  12. <p class="categories">Categorias: <?php the_category(', ') ?></p>
  13. <p class="tags">Palavras-chave: <?php the_tags(false, ', ') ?> </p>
  14. </footer>
  15. </article>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement