Skip to content

Instantly share code, notes, and snippets.

@edwinhamers
edwinhamers / add-custom-stylesheet-genesis
Last active August 29, 2015 14:06
Add Custom stylesheet to Genesis - Remove global.css stylesheet
<?php
//* Do NOT include the opening php tag
//* Load custom style sheet
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 );
}
//* Replace default style sheet