Skip to content

Instantly share code, notes, and snippets.

@ErikBernskiold
Created January 15, 2015 16:36
Show Gist options
  • Select an option

  • Save ErikBernskiold/355a02d14963b31c281b to your computer and use it in GitHub Desktop.

Select an option

Save ErikBernskiold/355a02d14963b31c281b to your computer and use it in GitHub Desktop.
Enqueue Main Stylesheet in Functions
if ( ! function_exists( 'mysite_enqueue_styles' ) ) :
/**
* Stylesheets
*
* Registers and enqueues theme stylesheets.
**/
function mysite_enqueue_styles() {
// Register
// wp_register_style( $handle, $src, $deps, $ver, $media );
wp_register_style( 'style', get_stylesheet_uri, false, '1.0', 'all' );
// Enqueue
wp_enqueue_style( 'style' );
}
add_action( 'wp_enqueue_scripts', 'mysite_enqueue_styles' );
endif;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment