header.php
<html>
<head>
<title>Barebones</title>
<?php wp_head() ?>
</head>
<body>
footer.php
<?php wp_footer() ?> </body> </html>
And then into each of the other files we add the following to the top (replacing the header.php content):
<?php get_header(); ?>
and the following to the bottom (replacing the footer.php content):
<?php get_footer(); ?>
No comments:
Post a Comment