Skip to content

Instantly share code, notes, and snippets.

@andyspicer
Created March 15, 2013 12:52
Show Gist options
  • Save andyspicer/5169704 to your computer and use it in GitHub Desktop.
Save andyspicer/5169704 to your computer and use it in GitHub Desktop.
WP - Replace Default Stylesheet
// Replace default style sheet
add_filter( 'stylesheet_uri', 'rgp_replace_default_style_sheet', 10, 2 );
function rgp_replace_default_style_sheet() {
return CHILD_URL . '/css/custom.css';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment