Using the latest stable dev with childtheme_override functions available - question about syntax.
Most of the time the childtheme_override looks like this:
if (function_exists('childtheme_override_something')) {
function thematic_something() {
childtheme_override_something();
}
} else {
function thematic_something() {....;}}
...which simply requires the child theme to contain function childtheme_override_something(); somewhere in functions.php.
But a bunch of the postheader and postfooter subfunctions are like:
if (function_exists('childtheme_override_something')) {
function thematic_something() {
return childtheme_override_something();
}
} else {
function thematic_something() {....;}}
Does this require any accommodating syntax change in the childtheme_override function?