Skip to content

Instantly share code, notes, and snippets.

@digisavvy
Created May 30, 2018 21:56
Show Gist options
  • Select an option

  • Save digisavvy/e7632534257ee3c0a3ad344ebedcb97b to your computer and use it in GitHub Desktop.

Select an option

Save digisavvy/e7632534257ee3c0a3ad344ebedcb97b to your computer and use it in GitHub Desktop.
function wpse_load_plugin_css() {
$plugin_url = plugin_dir_url( __FILE__ );
wp_enqueue_style( 'style1', $plugin_url . 'css/style1.css' );
wp_enqueue_style( 'style2', $plugin_url . 'css/style2.css' );
}
add_action( 'wp_enqueue_scripts', 'wpse_load_plugin_css' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment