Last active
December 21, 2015 13:28
-
-
Save dbernar1/6312616 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
add_action( 'wp_enqueue_scripts', 'my_pjn_scripts_and_styles'); | |
function my_pjn_scripts_and_styles() { | |
if ( is_page( 'some-page-slug' ) ) { | |
wp_enqueue_script( | |
$handle = 'googlemap', | |
$src = "http://maps.googleapis.com/maps/api/js?sensor=true", | |
$deps = array(), | |
$ver = 'V3', | |
$in_footer = true | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment