Skip to content

Instantly share code, notes, and snippets.

@jayllellis
Last active March 21, 2016 17:08
Show Gist options
  • Save jayllellis/5e6e9d3b89c4b0a23fa3 to your computer and use it in GitHub Desktop.
Save jayllellis/5e6e9d3b89c4b0a23fa3 to your computer and use it in GitHub Desktop.
Load style.css last
function load_custom_styles() {
wp_enqueue_style('style-css', get_template_directory_uri().'/style.css');// custom styles
}
add_action( 'wp_enqueue_scripts', 'load_custom_styles', 999 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment