Skip to content

Instantly share code, notes, and snippets.

@pixelloop
Last active December 17, 2015 07:35
Show Gist options
  • Save pixelloop/e1fc9043b111272a770e to your computer and use it in GitHub Desktop.
Save pixelloop/e1fc9043b111272a770e to your computer and use it in GitHub Desktop.
// Add custom.css to Genesis
add_action( 'wp_enqueue_scripts', 'custom_load_custom_style_sheet' );
function custom_load_custom_style_sheet() {
wp_enqueue_style( 'custom-stylesheet', CHILD_URL . '/custom.css', array(), PARENT_THEME_VERSION );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment