Skip to content

Instantly share code, notes, and snippets.

@pdmade
Last active August 29, 2015 14:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pdmade/f644bb2d340d35d950c1 to your computer and use it in GitHub Desktop.
Save pdmade/f644bb2d340d35d950c1 to your computer and use it in GitHub Desktop.
Child theme function that loads parent theme stylesheet.
<?php
//load the parent theme stylesheet and then the child theme stylesheet
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
function theme_enqueue_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment