My parent theme (Starkers) adds a CSS file that I’m trying to remove (I want to use @import instead so I can override styles more easily). Starkers has the following in its functions.php:
add_action( 'wp_enqueue_scripts', 'script_enqueuer' );
function script_enqueuer() {
wp_register_script( 'site', get_template_directory_uri().'/js/site.js', array( 'jquery' ) );
wp_enqueue_script( 'site' );
wp_register_style( 'screen', get_template_directory_uri().'/style.css', '', '', 'screen' );
wp_enqueue_style( 'screen' );
}
I’ve tried the following in the child functions.php, but the link and script tags still show up in the head section.
add_action('init', 'removeScripts');
function removeScripts() {
wp_dequeue_style('screen');
wp_deregister_script('site');
}
I’ve double checked to see if they are hard coded in the parent header and they are not.
Simply. Don’t. Do. That.
You simply jump into the same hook and then deregister/dequeue the styles/scripts and throw in your custom ones.
The reason for dequeue-ing and deregistering the scripts is simple:
Here is how you would either remove the parent theme’s stylesheet and replace it with a child theme’s stylesheet OR just remove the parent’s stylesheet from ever being loaded.
Starker theme’s functions.php:
Remember the handle that they call the style, ‘screen’
Replacing parent theme’s with child theme’s stylesheet
Starker-Child theme’s functions.php:
Remove parent theme’s stylesheet
Starker-Child theme’s functions.php:
We give the child theme’s add_action() a priority of 20 (default is 10) because we want it to run AFTER the parent theme has queued it up. The higher the priority, the later it will run. 20 > 10 so the child theme’s action will always run after the parent theme has already executed.