Skip to content

Instantly share code, notes, and snippets.

@Glinkfr
Created October 7, 2019 10:54
Show Gist options
  • Save Glinkfr/57e40ffd9e5b294cab2c37f93cdee19a to your computer and use it in GitHub Desktop.
Save Glinkfr/57e40ffd9e5b294cab2c37f93cdee19a to your computer and use it in GitHub Desktop.
Thème enfant de Sparkling, fichier functions.php
<?php
// On charge les styles parents et enfants
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles', 20);
function theme_enqueue_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
wp_dequeue_style('sparkling-style');
wp_enqueue_style( 'child-style',
get_stylesheet_directory_uri() . '/style.css',
array('parent-style')
);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment