Skip to content

Instantly share code, notes, and snippets.

@EastSideCode
Created February 22, 2017 13:11
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save EastSideCode/b2b4fb533c6a087ea8ac52ce59b04e53 to your computer and use it in GitHub Desktop.
Save EastSideCode/b2b4fb533c6a087ea8ac52ce59b04e53 to your computer and use it in GitHub Desktop.
WordPress Child theme functions.php
<?php
function add_parent_styles() {
wp_enqueue_style('parent-style', get_template_directory_uri().'/style.css');
}
add_action('wp_enqueue_scripts', 'add_parent_styles');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment