Themify WordPress Themes

Category

WordPress 子テーマで独自のjavascriptを使いたい

WordPressの子テーマで使用する独自のjavascriptを登録する方法。 子テーマのfunctions.phpに以下を記述する。
function yk_js_enqueue() {
    wp_register_script('yk_search', get_stylesheet_directory_uri()."/yk_search.js");
    wp_enqueue_script('yk_search');
}
add_action('wp_enqueue_scripts', 'yk_js_enqueue');

Leave a Reply

  

  

  

You can use these HTML tags

<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>