Step 10: Final Preparations.
In order for Wordpress plugins to function properly it is necessary to embed 2 pieces of coding into your design files. The first should be inserted into header.php inside the <head></head> tags and the final just be added into footer.php just before the closing </body> tag.
The first line of code to be added inside the header tags should be like so:
<?php wp_head(); ?>
The final line of code should be added just before the closing body tag of footer.php:
<?php wp_footer(); ?>

