Recreate footer
-
Hi.
Instead of this footer:
<!-- BEGIN OF FOOTER --> <div id="bottom-container"> <div id="footer-content"> <!-- begin of footer-address --> <div id="footer-address"> <?php $info_address = get_option('vulcan_info_address'); $info_phone = get_option('vulcan_info_phone'); $info_fax = get_option('vulcan_info_fax'); $info_email = get_option('vulcan_info_email'); ?> <img src="<?php $footer_logo = get_option('vulcan_footer_logo'); if ($footer_logo) : echo $footer_logo;?> <?php else : ?> <?php bloginfo('template_directory');?>/images/footer-logo.png<?php endif;?>" alt="<?php bloginfo('blogname');?>" /> <p><?php echo ($info_address) ? $info_address : "Imperium Tower - 15 Kuningan Raya 54th Street 14th Floor, Jakarta, DKI 10220, Indonesia";?></p> <p>Telp : <?php echo ($info_phone) ? $info_phone : "+1 234 567 8910";?>, Fax : <?php echo ($info_fax) ? $info_fax : "+1 234 567 1098";?><br/>Email : <?php echo ($info_email) ? $info_email : "[email protected], [email protected]";?></p> </div> <!-- end of footer-address --> <div id="footer-news"> <?php if (!function_exists('dynamic_sidebar') || !dynamic_sidebar('Bottom')) : ?> <h3>Nyheder</h3> <ul class="list-bottom"> <?php include (TEMPLATEPATH.'/placeholder/latestnews.php');?> </ul> <?php endif;?> </div> <!-- begin of footer-menu and copyright --> <div id="footer-last"> <div id="footer-menu"> <?php if (function_exists('wp_nav_menu')) { wp_nav_menu( array( 'menu_class' => 'navigation-footer', 'theme_location' => 'footernav','fallback_cb'=> 'vulcan_footermenu_pages',=> 'menu_order','sort_column' ) ); } else { vulcan_footermenu_pages(); } ?> </div> <div id="footer-copyright"> <?php $footer_text = get_option('vulcan_footer_text');?> <?php echo ($footer_text) ? stripslashes($footer_text) : "Copyright © 2010 Vulcan Company. All rights reserved";?> </div> </div> <!-- end of footer-menu and copyright --> </div> </div> <!-- END OF FOOTER --> </div> <?php $ga_code = get_option('vulcan_ga_code'); if ($ga_code) echo stripslashes($ga_code); ?> <?php wp_footer();?> </body> </html>
I would prefer a simple footer with nothing more than a horizontal dotted line with a call for the Copyright text set in the theme panel.
Can someone please help me redefine my footer to meet these wishes?
- The topic ‘Recreate footer’ is closed to new replies.