Skip to content

Instantly share code, notes, and snippets.

@rezzz-dev
Last active August 29, 2015 14:13
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 rezzz-dev/e78755986057ad8f18fd to your computer and use it in GitHub Desktop.
Save rezzz-dev/e78755986057ad8f18fd to your computer and use it in GitHub Desktop.
Child Theme functions.php
<?php
/* <name of> child theme */
// Faster than @import
add_action( 'wp_enqueue_scripts', 'my_child_theme_scripts' );
function my_child_theme_scripts() {
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