Created
August 27, 2017 16:11
-
-
Save mckernanin/ab2fe83f45112a8b5a50e133bbf3c4ef to your computer and use it in GitHub Desktop.
Enqueueing parent theme styles
This file contains 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 | |
function my_enquee_scripts() { | |
$label = 'parent-theme-styles'; | |
$fileurl = get_template_directory_uri() . '/style.css'; | |
wp_enqueue_style( $label, $fileurl ); | |
} | |
add_action( 'wp_enqueue_scripts', 'my_enquee_scripts' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment