Skip to content

Instantly share code, notes, and snippets.

@riesvangeffennl
Created April 5, 2017 19:03
Show Gist options
  • Save riesvangeffennl/2f481d0fb85f536ee7b3eb68a37633cc to your computer and use it in GitHub Desktop.
Save riesvangeffennl/2f481d0fb85f536ee7b3eb68a37633cc to your computer and use it in GitHub Desktop.
WP enqueue JS Wordpress
<?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