Skip to content

Instantly share code, notes, and snippets.

@sulmanpucit
Created October 13, 2016 11:34
Show Gist options
  • Save sulmanpucit/eb23eed16c2349b14e2736031aec4ac5 to your computer and use it in GitHub Desktop.
Save sulmanpucit/eb23eed16c2349b14e2736031aec4ac5 to your computer and use it in GitHub Desktop.
wp_enqueue_style in child theme
function theme_enqueue_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css', array('parent-style') );
}
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment