Still trying to override TEMPLATEPATH with STYLESHEETPATH
I dont know much at all about functions but I've been trying to override
Code:
include_once(TEMPLATEPATH.'/includes/theme-header.php');
with
Code:
include_once(STYLESHEETPATH.'/includes/theme-header.php');
I looked up override_function on PHP.net
http://php.net/manual/en/function.override-function.php
I'm hoping to ultimately use the childthemes function.php to override the first code above and use the second, so I can edit main template files without touching the parent themes.