Add CSS & JS files in the plugin


function add_my_css_and_my_js_files(){
wp_enqueue_style( 'my-stylesheet-name', plugins_url('/css/style.css', __FILE__));
wp_register_script( 'my-plugin-script', plugins_url( '/js/script.js', __FILE__ ) );
}
add_action('wp_enqueue_scripts', "add_my_css_and_my_js_files");

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s