Advertisement
Guest User

Untitled

a guest
Mar 18th, 2012
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.82 KB | None | 0 0
  1. </div>
  2.  
  3. <?php include (TEMPLATEPATH . '/banner728-bottom.php'); ?>
  4.  
  5. </div>
  6.  
  7. <?php /* footer widgets */ if ( is_active_sidebar('widget-5') || is_active_sidebar('widget-6') || is_active_sidebar('widget-7') || is_active_sidebar('widget-8') ) { ?>
  8.  
  9. <div id="footer-widgets" class="maincontent">
  10. <div class="limit clearfix">
  11. <div class="footer-widget1">
  12. <?php dynamic_sidebar('Footer Widget 1'); ?>
  13. </div>
  14. <div class="footer-widget2">
  15. <?php dynamic_sidebar('Footer Widget 2'); ?>
  16. </div>
  17. <div class="footer-widget3">
  18. <?php dynamic_sidebar('Footer Widget 3'); ?>
  19. </div>
  20. <div class="footer-widget4">
  21. <?php dynamic_sidebar('Footer Widget 4'); ?>
  22. </div>
  23. </div>
  24. </div>
  25. <?php } ?>
  26.  
  27. <?php if (has_nav_menu('footernav')) { ?>
  28. <div id="footnav">
  29. <div class="limit clearfix">
  30. <?php wp_nav_menu( array( 'theme_location' => 'footernav' ) ); ?>
  31. </div>
  32. </div>
  33. <?php } ?>
  34.  
  35. <div id="footer">
  36. <div class="limit clearfix">
  37. &copy; <a href="<?php bloginfo('url'); ?>"><?php bloginfo('name'); ?></a> <?php echo date('Y'); ?>. <?php _e("All rights reserved.", "solostream"); ?>
  38.  
  39. <?php /* Solostream Footer Credit. You can only remove this if you own the Premium License */ $link = array(
  40. "<a href = \"http://www.solostream.com\">WordPress Themes</a>",
  41. "<a href = \"http://www.solostream.com\">Premium WordPress Themes</a>",
  42. "<a href = \"http://www.solostream.com\">WordPress Business Themes</a>",
  43. "<a href = \"http://www.solostream.com\">Business WordPress Themes</a>",
  44. "<a href = \"http://www.wp-magazine.com\">WordPress Magazine Themes</a>");
  45. srand(time());
  46. $random = (rand()%5);
  47. echo ("$link[$random]");
  48. /* End Solostream Footer Credit. */ ?>
  49.  
  50. <?php include (TEMPLATEPATH . '/sub-icons.php'); ?>
  51.  
  52. </div>
  53.  
  54. </div>
  55.  
  56. </div>
  57.  
  58. <?php wp_footer(); ?>
  59.  
  60. </body>
  61.  
  62. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement