Child themes, over riding in the parents theme
The answer is to remove things in your child theme via an action that runs before the action the parent theme has hooked to, everything should be happening within an action of some sort. For example, in your parent theme: function do_something(){ // something happens here } add_action( ‘init’, ‘do_something’ ); Then in your child … Read more