Created
May 15, 2015 02:37
-
-
Save loorlab/761d90f93f0e96b1f2fa to your computer and use it in GitHub Desktop.
functions.php for Theme Child WP
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 | |
add_action( 'wp_enqueue_scripts', 'wpsites_load_parent_styles'); | |
function wpsites_load_parent_styles() { | |
wp_enqueue_style( 'parent-styles', get_template_directory_uri().'/style.css' ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment