I just noticed that a site I've been working on locally is displaying the footer copyright shortcode on the main page, when it should be displaying the actual output. I haven't changed anything, so not sure why it's doing this. Here's the footer code I've set to display.
PHP Code:
/***** Customize the entire footer *****/
remove_action( 'genesis_footer', 'genesis_do_footer' );
add_action( 'genesis_footer', 'child_do_footer' );
function child_do_footer() {
?>
<p><div class="logo"><a href="http://localhost:8888/"><img class="alignleft" src="http://localhost:8888/wp-content/uploads/2012/04/target2.png"></a></div>
<div class="gototop"><a href="http://localhost:8888/about">About</a> | <a href="http://localhost:8888/services">Services</a > | <a href="http://localhost:8888/work">Work</a> | <a href="http://localhost:8888/resources">Resources</a> | <a href="http://localhost:8888/blog">Blog</a> | <a href="http://localhost:8888/contact">Contact</a> | <a href="http://localhost:8888/privacy">Privacy</a> | <a href="http://localhost:8888/sitemap">Sitemap</a></div>
<div class="creds">Copyright [footer_copyright] · <a href="http://mysite.com">My Site</a></div></p>
<?php
}
It was displaying this: Copyright © 2012 · My Site
Now it's displaying this: Copyright [footer_copyright] · My Site
Any suggestions on why the shortcode isn't working correctly now?