Skip to content

Instantly share code, notes, and snippets.

@Zodiac1978
Last active August 29, 2015 14:07
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 Zodiac1978/e117446fa38dedac0f0d to your computer and use it in GitHub Desktop.
Save Zodiac1978/e117446fa38dedac0f0d to your computer and use it in GitHub Desktop.
Load Parent Theme CSS in Child Theme without using @import
<?php
function twentytwelve_child_scripts() {
wp_deregister_style( 'twentytwelve-style' );
wp_register_style( 'twentytwelve-style', get_template_directory_uri() . '/style.css' );
wp_enqueue_style( 'twentytwelve-child-style', get_stylesheet_uri(), array( 'twentytwelve-style' ) );
}
add_action( 'wp_enqueue_scripts', 'twentytwelve_child_scripts', 11 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment