Guest User

Atul

a guest
Jun 3rd, 2010
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.86 KB | None | 0 0
  1. <?php
  2. global $options;
  3. foreach ($options as $value) {
  4.     if (get_settings( $value['id'] ) === FALSE) {
  5.         $$value['id'] = $value['std'];
  6.     }
  7.     else {
  8.         $$value['id'] = get_settings( $value['id'] );
  9.     }
  10. }
  11. ?>
  12.     </div>
  13.  
  14. </div>
  15.  
  16. <?php
  17. if ( $wp_launch_footer_widgets == 'Yes' ) {
  18.     include (TEMPLATEPATH . '/footer-widgets.php');
  19. }
  20. else { ?>
  21.     <div id="wrap-bottom"></div>
  22. <?php } ?>
  23. <div id="footer" class="clearfix">
  24.     &copy; <?php _e("Copyright");?> <a href="<?php bloginfo('url'); ?>"><?php bloginfo('name'); ?></a> <?php echo date('Y'); ?> . <?php _e("All rights reserved."); ?><br />
  25.     <a href="http://wordpress.org/"><?php _e("WordPress"); ?></a> | <a href="http://www.free-premium-wordpress-themes.com"><?php _e("Free Premium Wordpress Themes"); ?></a> | <a href="http://validator.w3.org/check?uri=referer">XHTML</a>
  26. </div>
  27.  
  28. <?php wp_footer();?>
  29. </body>
  30.  
  31. </html>
Add Comment
Please, Sign In to add comment