I use Starkers with a child theme (starkers-child).
I need to edit the .php function to declare a menu, so I copied the functions.php folder, JS and the external folder (they were all declared somewhere in the function file)
However, I still have one error:
Cannot redeclare starkers_script_enqueuer() (previously declared in C:\wamp\www\redlaw\wp-content\themes\starkers-child\functions.php:65) in C:\wamp\www\redlaw\wp-content\themes\starkers-master\functions.php
I believe this is caused by this line:
function starkers_script_enqueuer() {
I can understand why, since it already calls the function in master, so it cannot call it again in the child.
But if I delete this line from the wizard, will it not defeat the goal of preserving a clean wizard and having a child theme?
The full functions.php is displayed here (unedited as it appears in the main topic) http://jsfiddle.net/8KGcK/
source share