<?php
// Include the functions.php file, which provides functions we use all over the place:
require('../inc/functions.php');
// Render our HTML header, including this lesson's title
add_header('Troubleshooting');
?>
<p>
Stuck? Here are some common problems:
</p>
<ul>
<li>
<a href="/troubleshooting/php-not-working/">PHP isn't working</a>
</li>
</ul>
<?php
// Render our HTML footer
add_footer();
?>