Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save skylarking85/dfc6edd09e9a1a67bfbd53c50301a19e to your computer and use it in GitHub Desktop.
Save skylarking85/dfc6edd09e9a1a67bfbd53c50301a19e to your computer and use it in GitHub Desktop.
function my_scripts() {
if(is_single('{記事id}')) {
wp_enqueue_script('vue','https://cdn.jsdelivr.net/npm/vue/dist/vue.js', array(), false, true);
wp_enqueue_script('vue_calc',get_theme_file_uri() . '/js/calcrator.js', array('vue'), false, true);
}
}
add_action( 'wp_enqueue_scripts', 'my_scripts' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment