Created
March 12, 2018 16:42
-
-
Save alegut/d3254c051c2eac9e2bcb22a64473fd22 to your computer and use it in GitHub Desktop.
WordPress styles and scripts including
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
<?php | |
function my_plugin_add_scripts(){ | |
wp_enqueue_style('my-plugin-style', plugins_url().'/my-plugin/css/style.css'); | |
wp_enqueue_script('my-plugin-script', plugins_url().'/my-plugin/js/main.js'); | |
} | |
add_action('wp_enqueue_scripts', 'my_plugin_add_scripts'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment