Hot on the heels (heels! footer! haha!) of yesterday’s footer post, here’s a better way to code it, using an unordered list so it’s semantically correct:
// Custom footer
add_action('thesis_hook_footer', 'custom_footer');
function custom_footer() {
?>
<div id="footer_right">© < ?= date( 'Y' ) ?>, Company name • site by HDG, inc.</div>
<div id="footer_left">
<ul class="menu">
<li>HOME</li>
<li>About us</li>
<li>Services</li>
<li>News</li>
<li>Affiliations</li>
<li>Contact Us</li>
</ul>
</div>
< ?php
}