Skip to content

Instantly share code, notes, and snippets.

@wpflames
Last active November 29, 2020 17:58
Show Gist options
  • Select an option

  • Save wpflames/a99044cad758a8e7c310e11baa7e3194 to your computer and use it in GitHub Desktop.

Select an option

Save wpflames/a99044cad758a8e7c310e11baa7e3194 to your computer and use it in GitHub Desktop.
Enqueue script
<?php //don't copy the opening php tag
// =============================================================
// DEFINE CONSTANTS
// =============================================================
define('THEME', get_stylesheet_directory_uri());
// =============================================================
// ENQUEUE SCRIPTS
// =============================================================
function add_custom_scripts() {
wp_enqueue_style( 'custom-css', THEME . '/assets/css/style.css' );
wp_enqueue_script( 'custom-js', THEME . '/assets/js/custom.js', array(), '1.0.0', true );
}
add_action( 'wp_enqueue_scripts', 'add_custom_scripts' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment