1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

WordpressでjQueryを読み込む

Last updated at Posted at 2019-12-03

◉functions.phpへの記述

<?php
function my_enqueue_script() {
    wp_enqueue_script( 'script-js', get_template_directory_uri() . '/script.js');
}
add_action( 'wp_enqueue_scripts', 'my_enqueue_script' );
?>
<?php
add_filter( 'show_admin_bar', '__return_false' );
?>

◉header.php(もしくはindex.php)への記述 ※</head>の直前に記述する。

<?php wp_head(); ?>
	</head>
1
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?