Created
April 5, 2017 19:03
-
-
Save riesvangeffennl/2f481d0fb85f536ee7b3eb68a37633cc to your computer and use it in GitHub Desktop.
WP enqueue JS Wordpress
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
<?php | |
function js_adding_scripts() { | |
if ( is_page( array(1, 2) ) ) { | |
wp_register_script('js', get_stylesheet_directory_uri() . '/pad-naar-css-bestand/javascript-bestand.js','','1.0', true); | |
wp_enqueue_script('js'); | |
} | |
} | |
add_action( 'wp_enqueue_scripts', 's_adding_scripts' ); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment