Created
August 13, 2015 15:02
-
-
Save Quay3/19e4f3fc8c65d84be366 to your computer and use it in GitHub Desktop.
Child Theme Gist 2
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
function enqueue_parent_theme_style() { | |
wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' ); | |
} | |
add_action( 'wp_enqueue_scripts', 'enqueue_parent_theme_style' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment