Skip to content

Instantly share code, notes, and snippets.

@nootrope
Created August 3, 2017 20:30
Show Gist options
  • Save nootrope/4a636a62d3adbc4b82ab444d69a91bd1 to your computer and use it in GitHub Desktop.
Save nootrope/4a636a62d3adbc4b82ab444d69a91bd1 to your computer and use it in GitHub Desktop.
Wordpress: enqueue parent theme styles
<?php
add_action( 'wp_enqueue_scripts', 'usr_enqueue_parent_styles' );
function usr_enqueue_parent_styles() {
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