Hello,
All of a sudden, I notice that I'm missing the Wordpress admin bar on the front-end of my site. If I enable another theme, it comes back.
I searched Google for this and found a reference that says wp_footer should come right before the closing body tag. I moved this bit of code to right before the closing body tag and it still isn't showing up.
<?php
/* Always have wp_footer() just before the closing </body>
* tag of your theme, or you will break many plugins, which
* generally use this hook to reference JavaScript files.
*/
wp_footer();
?>
Any ideas?
Thanks.














