Skip to content

Instantly share code, notes, and snippets.

@andyspicer
Created March 15, 2013 12:51
Show Gist options
  • Save andyspicer/5169696 to your computer and use it in GitHub Desktop.
Save andyspicer/5169696 to your computer and use it in GitHub Desktop.
WP - Genesis Load Custom Stylesheet
// Load custom style sheet
add_action( 'wp_enqueue_scripts', 'rgp_load_custom_style_sheet' );
function rgp_load_custom_style_sheet() {
wp_enqueue_style( 'translate', CHILD_URL . '/css/translate.css', array(), PARENT_THEME_VERSION );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment