Skip to content

Instantly share code, notes, and snippets.

@funteractive
Created November 7, 2013 08:25
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 funteractive/7351055 to your computer and use it in GitHub Desktop.
Save funteractive/7351055 to your computer and use it in GitHub Desktop.
外部jsファイルの読み込み
<?php
function print_my_scripts(){
if( !is_admin() ){
wp_enqueue_script( 'script', get_stylesheet_directory_uri() . '/shared/js/script.js' );
}
}
add_action( 'wp_footer', 'print_my_scripts' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment