Skip to content

Instantly share code, notes, and snippets.

@maximejobin
Created February 17, 2015 18:26
Show Gist options
  • Save maximejobin/23c139e8f6b5202aa2db to your computer and use it in GitHub Desktop.
Save maximejobin/23c139e8f6b5202aa2db to your computer and use it in GitHub Desktop.
<?php // <- ne pas copier cette ligne
// Ajout du fichier de style parent à partir du thème enfant
// Note: À placer dans "functions.php" du thème enfant
function mj_enqueue_scripts() {
wp_enqueue_style( 'parent-css', get_template_directory_uri() . '/style.css', array() );
}
add_action( 'wp_enqueue_scripts', 'mj_enqueue_scripts' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment