Skip to content

Instantly share code, notes, and snippets.

@phpbits
Created October 20, 2019 12:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save phpbits/ea41731b0760591286a0f0d0ca5dc2d4 to your computer and use it in GitHub Desktop.
Save phpbits/ea41731b0760591286a0f0d0ca5dc2d4 to your computer and use it in GitHub Desktop.
<?php
/**
** Add custom scripts
**/
add_action( 'wp_enqueue_scripts', 'my_custom_scripts' );
function my_custom_scripts(){
wp_enqueue_script( 'custom_js', plugins_url( 'js/custom.js', __FILE__ ), array(), '1.0.0', true );
wp_register_style( 'custom_css', plugins_url( 'style.css', __FILE__ ), false, '1.0.0', true );
wp_enqueue_style ( 'custom_css' );
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment