Skip to content

Instantly share code, notes, and snippets.

@Shininglow
Created November 1, 2017 07:50
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 Shininglow/ecf7794ee918aa2bb82b926174c1e122 to your computer and use it in GitHub Desktop.
Save Shininglow/ecf7794ee918aa2bb82b926174c1e122 to your computer and use it in GitHub Desktop.
function example_child_theme_enqueue_styles() {
$parent_style = 'example-theme-style';
wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' );
wp_enqueue_style( 'example-child-theme-style',
get_stylesheet_directory_uri() . '/style.css',
array( $parent_style ),
wp_get_theme()->get( 'Version' )
);}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment