Using Wordpress Templates in Enthusiast
So I wanted to use the Enthusiast script for part of my Witches Weekly site, but I wanted to use the same template that I use in Wordpress. In order to do that I had to use the following:
For the Header:
<?php
require(’wp-config.php’);
include_once(TEMPLATEPATH . ‘/header.php’);
?>
For the Footer:
<?php
include_once(TEMPLATEPATH . ‘/footer.php’);
?>
Entry viewed times. Posted in Webdev

