Reputation: 193
The admin bar doesn't show! I looked around and did everything I found:
Shut down all plugins - doesn't work.
Changed do default theme - shows (so it's a theme problem)
Checked if I have the wp_head()
and wp_footer()
- doesn't work
Changed the define('WP_DEBUG', true);
- doesn't show any error
Re-uploaded all the wordpress wp-admin
and wp-includes
files - doesn't work
Disabled the css on site - still not seen
Any other suggestions?
Upvotes: 2
Views: 236
Reputation: 4435
Have you added the
wp_head();
header.php
in theme editor right before </head>
and wp_footer();
right before </body>
Upvotes: 2