Wordpress Admin Bar Not Showing on frontend of site
add this to the end of your footer.php
in your theme folder:
<?php wp_footer(); ?>
problem solved :-)
Check that your theme includes a call to the function wp_footer()
at some point, usually at the very bottom of footer.php. That generates the code required for the admin bar to show.