Skip to content

Instantly share code, notes, and snippets.

@theukedge
Created June 15, 2016 13:12
Show Gist options
  • Save theukedge/76e309e261d5d03e668f9952ba0538eb to your computer and use it in GitHub Desktop.
Save theukedge/76e309e261d5d03e668f9952ba0538eb to your computer and use it in GitHub Desktop.
<?php function load_parent_theme_css() {
$parentcss = get_template_directory() . '/style.css';
wp_enqueue_style(
'parent-theme',
get_template_directory_uri() . '/style.css',
array(),
filemtime( $parentcss )
);
}
add_action( 'wp_enqueue_scripts', 'load_parent_theme_css', 11 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment