Advertisement
johnburn

footer.php

Apr 21st, 2011
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.90 KB | None | 0 0
  1. <div id="footer">
  2. <?
  3. global $options;
  4. foreach ($options as $value) {
  5.     if (get_settings( $value['id'] ) === FALSE) { $$value['id'] = $value['std']; } else { $$value['id'] = get_settings( $value['id'] ); }
  6. }
  7. ?>
  8. <div class="footerbottom">
  9.     <div class="footerleft">
  10.         <p><? if ($wp_year) { ?><? echo $wp_year; ?><? } else { ?>2010<? } ?> &copy; <span style="font-weight:bold;"><?php bloginfo('name'); ?></span></p>
  11.     </div>
  12.     <div class="footerright">
  13.         <p>Designed by <a href="http://www.factorybunkbeds.com" title="Buy bunk beds, loft beds, and kids bedroom furniture at the lowest prices on the Internet.">Bunk Beds</a> and <a href="http://www.factoryhardwoodfloors.com" title="Buy hardwood floors, both click and lock and tongue and groove, at the lowest prices on the Internet.">Hardwood Floors</a></p>
  14.     </div>
  15. </div>
  16.  
  17. </div>
  18. </div>
  19. <?php wp_footer(); ?>
  20. <? echo $wp_analytics; ?>
  21. </body>
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement