Error in WordPress theme does not show admin bar

Tiempo de lectura: < 1 minuto
If we are designing a WordPress theme and it turns out that the admin bar is not showing up, it is most likely that we are missing some default WordPress tags to add.

To do this, let’s check that we have the following:

In header.php

<?php wp_head(); ?>

And in footer.php (at the very end)

<?php wp_footer(); ?>

In my case, I was missing the wp_footer one.

And now the bar is showing again.

Leave a Comment