Skip to content

Instantly share code, notes, and snippets.

@intelliweb
Created November 5, 2013 20:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save intelliweb/7325809 to your computer and use it in GitHub Desktop.
Save intelliweb/7325809 to your computer and use it in GitHub Desktop.
WP: Enqueue custom stylesheet (custom.css)
<?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