Error in WordPress theme does not show admin bar 19 de March de 2024 by DevCodeLight 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. DevCodeLight Post Views: 1 Comparte esto:FacebookX Related