wordpressの特定ページにjavascriptファイルを呼び出す記述
function.phpへ記述する
function blank_header_scripts() {
global $post;
if ($post->post_type == "投稿タイプのスラッグ") {
wp_register_script('validation', get_template_directory_uri() . 'テンプレートからのファイルのパス', array('jquery'));
wp_enqueue_script('validation');
}
}
add_action('wp_print_scripts', 'blank_header_scripts');
コメント