Skip to content

Instantly share code, notes, and snippets.

@theukedge
Created June 15, 2016 13:12
Embed
What would you like to do?
<?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