Created
November 5, 2013 20:39
-
-
Save intelliweb/7325809 to your computer and use it in GitHub Desktop.
WP: Enqueue custom stylesheet (custom.css)
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
<?php | |
// Enqueue custom stylesheet | |
add_action('wp_enqueue_scripts', 'intw_custom_styles'); | |
function intw_custom_styles() { | |
wp_enqueue_style( 'custom-styles', get_stylesheet_directory_uri() . '/custom.css', '1.0.0', 'all' ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment