Make your Own WordPress Theme – Footer
Now we are in the second last part in my Make your Own WordPress Theme. In footer, you can put your credits or anything that you want. But make sure don’t forget to put
<?php wp_footer(); ?>
before </body> like this.
- .
- </div> <!– close content –>
- <div id=”footer”>
- your footer text goes here
- </div> <!– close footer –>
- </div> <!– close wrapper –>
- .
- <?php wp_footer(); ?>
- .
- </body>
- </html>
- .
Some plugin need this tag to make it work. So if you decided to make your theme to public, make sure to put it in your theme.
Related Post :
Part 1 – Make your Own WordPress Theme
Part 2 – Header
Part 3 – Index
Part 4 – Comment
Part 5 – Sidebar
Part 6 – Footer
Part 7 – Finish!