Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save braddalton/6034050 to your computer and use it in GitHub Desktop.

Select an option

Save braddalton/6034050 to your computer and use it in GitHub Desktop.
add_action( 'wp_enqueue_scripts', 'wpsites_second_style_sheet' );
function wpsites_second_style_sheet() {
wp_register_style( 'plugins-style', plugins_url('plugins/your-plugin/style.css', __FILE__) );
wp_enqueue_style( 'plugins-style' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment