Created
April 4, 2017 12:05
-
-
Save jessengatai/6e456450c60469e577f7acbcae1cab25 to your computer and use it in GitHub Desktop.
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
/** | |
* Enqueue our customizer UI stylesheet so we can style our custom section titles | |
* @return void | |
*/ | |
function jn_customizer_ui_styles() { | |
wp_enqueue_style('jn-customizer-ui-styles', get_theme_file_uri('/jn-customizer-ui-styles.css'), 'all' ); | |
} | |
add_action( 'customize_controls_enqueue_scripts', 'jn_customizer_ui_styles' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment