Wordpress Admin Bar Not Showing on frontend of site Wordpress Admin Bar Not Showing on frontend of site wordpress wordpress

Wordpress Admin Bar Not Showing on frontend of site


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.


add this to the end of your footer.php in your theme folder:

<?php wp_footer(); ?>

problem solved :-)


Most of the time the wp_footer() call is right where it should be so if you still can't see the admin bar then try the following:

  1. log out of the backend

  2. navigate to the front-end

  3. clear your browser cache

  4. log back in using the absolute url i.e. yourwebsite.co.uk/wp-admin

    and then see if it comes up - worked for me.

Also make sure the "Show Toolbar when viewing site" box is checked in your user profile page or whatever you try ain't gonna work my friend!.