Skip to content

Instantly share code, notes, and snippets.

@jamigibbs
Created January 8, 2015 14:17
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 jamigibbs/087171889999c37d8f48 to your computer and use it in GitHub Desktop.
Save jamigibbs/087171889999c37d8f48 to your computer and use it in GitHub Desktop.
Customizer Specific Stylesheet
/**
* Custom Customizer Style
*/
function custom_customizer_style() {
wp_enqueue_style( 'rescue-customizer-style', get_template_directory_uri() . '/customizer/style.css', array(), '', 'all' );
}
add_action( 'customize_controls_enqueue_scripts', 'custom_customizer_style' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment