December 2017
Beginner
458 pages
7h 52m
English
One other thing we want to take care of is the top margin above the title of the post, as shown in the following screenshot. The reason it is like this is because it's making room for the admin bar which isn't showing right now:

In order for the admin bar to show, we have to call wp_footer inside of our footer.php file. So let's go there and add <?php wp_footer(); ?>:
</div> </div> </div> <footer> <p><?php bloginfo('name'); ?> © 2017</p> </footer> <?php wp_footer(); ?></body></html>
Reload the frontend page and now you can see we have our admin bar, and of course, this only shows two people that are ...
Read now
Unlock full access