Guest User

Untitled

a guest
Oct 21st, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <?php include( TEMPLATEPATH . '/includes/featured-slider.php'); ?>
  4.  
  5. <div id="content-border">
  6. <div id="content">
  7. <div id="content-tile">
  8.  
  9. <?php if ( get_option( 'woo_intro_page' ) <> "" ) { ?>
  10.  
  11. <div id="main" class="grid_10 alpha">
  12.  
  13. <?php query_posts('page_id=' . get_option( 'woo_intro_page' ) ); while (have_posts()) : the_post(); ?>
  14.  
  15. <h2><?php the_title(); ?></h2>
  16.  
  17. <div class="entry">
  18. <?php the_content(); ?>
  19. </div><!-- /entry -->
  20.  
  21. <?php endwhile; ?>
  22.  
  23. </div><!-- /#main -->
  24.  
  25. <?php } ?>
  26.  
  27. <?php $wp_query->is_home = true; ?>
  28. <?php get_sidebar(); ?>
  29.  
  30. <?php get_footer('sidebar-home'); ?>
Add Comment
Please, Sign In to add comment