Created
June 8, 2017 17:29
-
-
Save WPDevHQ/2809eac1e55245582f5b11e80efc2630 to your computer and use it in GitHub Desktop.
This file contains 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
<?php | |
function gp_child_scripts() { | |
wp_enqueue_style( 'gpchild-custom-css', get_theme_file_uri( '/customCss/modalStyling.css' ) ); | |
wp_enqueue_script( 'gpchild-custom-js', get_theme_file_uri( '/js/modalScript.js' ), array(), '4.8', true ); | |
} | |
add_action( 'wp_enqueue_scripts', 'gp_child_scripts' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment