Advertisement
Guest User

Untitled

a guest
Feb 1st, 2012
331
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.27 KB | None | 0 0
  1. <?php
  2. global $options;
  3. foreach ($options as $value) {
  4.     if (get_settings( $value['id'] ) === FALSE) { $$value['id'] = $value['std']; } else { $$value['id'] = get_settings( $value['id'] ); }
  5. }
  6. $dateformat = get_option('date_format');
  7. $timeformat = get_option('time_format');
  8. ?>
  9.  
  10. <?php get_header(); ?>
  11.  
  12. <div class="wrapper">
  13.  
  14. <div class="frameShadow frameTop"><img src="<?php bloginfo('template_directory'); ?>/images/back_frame_top.png" height="10" width="980" alt="" /></div>
  15. <div id="frame">  
  16.  
  17. <div id="content">
  18.  
  19.     <div id="main" class="home">
  20.  
  21.         <?php if ($wpzoom_featured_posts_show == 'Yes' && is_home() && $paged < 2) { include(TEMPLATEPATH . '/wpzoom_featured_posts.php'); } ?>
  22.  
  23.         <?php if ($wpzoom_featured_page_1_show == 'Yes' && is_home() && $paged < 2) { include(TEMPLATEPATH . '/wpzoom_featured_page.php'); } // if show ?>
  24.  
  25.         <div id="homeColumns">
  26.  
  27.             <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Homepage Widgets') ) : ?> <?php endif; ?>
  28.  
  29.         <div class="cleaner"> </div>
  30.         </div><!-- end #homeColumns -->
  31.  
  32.     </div><!-- end #main -->
  33.  
  34.     <div id="sidebar">
  35.  
  36.         <?php get_sidebar(); ?>
  37.  
  38.     </div><!-- end #sidebar -->
  39.  
  40.     <div class="cleaner"> </div>
  41. </div><!-- end #content -->
  42.  
  43. </div><!-- end #frame -->
  44.  
  45. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement