Advertisement
Guest User

part 2

a guest
May 2nd, 2012
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1.  
  2. <!-- vai buscar o conteúdo da página header.php -->
  3. <?php get_header(); ?>
  4.  
  5. <!-- div do conteúdo/body -->
  6. <div id="main">
  7. <!-- div do conteúdo principal (dentro do body) -->
  8. <div id="content">
  9. <h1>Main Content Area</h1>
  10. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  11. <h1><?php the_title(); ?></h1>
  12. <h4>Posted on <?php the_time('F jS, Y') ?></h4>
  13. <p><?php the_content(__('(more...)')); ?></p>
  14. <hr>
  15. <?php endwhile; else: ?>
  16. <p><?php _e('Sorry, we couldn’t find the post you are looking for.'); ?></p>
  17. <?php endif; ?>
  18. </div>
  19.  
  20. <?php get_sidebar(); ?>
  21.  
  22. </div>
  23.  
  24. <div id="delimiter"></div>
  25.  
  26. <!-- vai buscar o conteúdo da página footer.php -->
  27. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement