Created
May 30, 2018 21:56
-
-
Save digisavvy/e7632534257ee3c0a3ad344ebedcb97b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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