Skip to content

Instantly share code, notes, and snippets.

@someguy9
Created February 19, 2021 19:50
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 someguy9/b633edf6c870a928c0fd3e041dfbb03b to your computer and use it in GitHub Desktop.
Save someguy9/b633edf6c870a928c0fd3e041dfbb03b to your computer and use it in GitHub Desktop.
Example usage of wp_enqueue_script
<?php
function wp_smartwp_scripts_method() {
wp_enqueue_script( 'my-custom-script', get_stylesheet_directory_uri() . '/js/your_custom_script.js', array( 'jquery' ), true );
}
add_action( 'wp_enqueue_scripts', 'wp_smartwp_scripts_method' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment