diff --git a/functions.php b/functions.php index 9eb22bf0..df440d92 100644 --- a/functions.php +++ b/functions.php @@ -100,6 +100,10 @@ add_action( 'widgets_init', '_s_widgets_init' ); * Enqueue scripts and styles. */ function _s_scripts() { + if ( is_child_theme() ) { + wp_enqueue_style( '_s-parent-style', get_template_directory_uri() . '/style.css' ); + } + wp_enqueue_style( '_s-style', get_stylesheet_uri() ); wp_enqueue_script( '_s-navigation', get_template_directory_uri() . '/js/navigation.js', array(), '20120206', true );