Guest User

Untitled

a guest
Jun 18th, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <div id="page" class="site">
  4.  
  5. <header>
  6. <h1><?php bloginfo( 'name' ); ?></h1>
  7. </header>
  8.  
  9. <?php if ( have_posts() ) : ?>
  10.  
  11. <?php while ( have_posts() ) : the_post(); ?>
  12.  
  13. <article <?php post_class(); ?>>
  14. <?php the_title('<h2>','</h2>'); ?>
  15. <p><?php echo get_the_date(); ?></p>
  16. <?php the_post_thumbnail( 'thumbnail' ); ?>
  17. <?php the_excerpt(); ?>
  18. <a href="<?php echo get_permalink(); ?>">Leia mais</a>
  19. </article>
  20.  
  21. <?php endwhile; ?>
  22.  
  23. <?php echo paginate_links(); ?>
  24.  
  25. <?php endif; ?>
  26.  
  27. </div>
  28.  
  29. <?php get_footer(); ?>
Add Comment
Please, Sign In to add comment