Last active
April 28, 2020 19:24
-
-
Save DigitalEssence/74637367ee89fad60758455ff748aa72 to your computer and use it in GitHub Desktop.
WordPress - Javascript - Enqueue javascript
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
// Add Javascript to select default options in Product Add on | |
function digitalessence_new_scripts(){ | |
wp_enqueue_script( 'product-addon-default-values', get_stylesheet_directory_uri() . '/js/product-addon-default-value.js', array(), true ); | |
} | |
add_action( 'wp_enqueue_scripts', 'digitalessence_new_scripts' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment