Advertisement
bastetmilo

Untitled

Nov 6th, 2015
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <div id="content" class="clearfix">
  4. <div class="wrapper-outer">
  5. <?php // the loop ?>
  6. <div id="news-title">
  7. <h1>
  8. <?php
  9. if ( is_front_page() && is_home() ) {
  10. // Default homepage
  11. } elseif ( is_front_page() ) {
  12. // static homepage
  13. } elseif ( is_home() ) {
  14. echo __('News','bonfire');
  15. } else {
  16. //everything else
  17. }
  18. ?>
  19. </h1>
  20. </div>
  21. <?php if (have_posts()) : ?>
  22. <?php while (have_posts()) : the_post(); ?>
  23.  
  24. <!-- BEGIN LOOP -->
  25. <?php get_template_part( 'includes/loop'); ?>
  26. <!-- END LOOP -->
  27.  
  28. <?php endwhile; ?>
  29. <?php else : ?>
  30.  
  31. <!-- BEGIN NO CONTENT FOUND -->
  32. <p><?php _e( 'Apologies, nothing found.', 'bonfire' ); ?></p>
  33. <!-- END NO CONTENT FOUND -->
  34.  
  35. <?php endif; ?>
  36.  
  37. </div>
  38. <!-- /.wrapper-outer -->
  39. </div>
  40. <!-- END #content -->
  41.  
  42. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement