Created
February 17, 2015 18:26
-
-
Save maximejobin/23c139e8f6b5202aa2db to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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