Last active
March 21, 2016 17:08
-
-
Save jayllellis/5e6e9d3b89c4b0a23fa3 to your computer and use it in GitHub Desktop.
Load style.css last
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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