Hmm...but won't that still do the same thing? How will that let child themes intercept Apollo13::start? One would still have to edit the parent's functions.php because the parent's functions.php is run first (or am I wrong?).
I'd be interested (for…
Yeah, it'll totally help because WordPress runs the parent theme's functions.php first, meaning that a child theme might as well not even extend the Apollo13 class - Apollo13::start will always have already been called!
This way, the child theme ca…
I have a bit to contribute to this @Apollo13_coder. Can you put $apollo13->start() inside of an init function and use add_action('init', 'function_name') instead of calling it directly? This would make overriding the class without changing the fi…