0
1

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 3 years have passed since last update.

Wordpressのメモ

Last updated at Posted at 2021-05-11

TIPS

あるURLの時だけ一部のHTMLを表示する

	<?php 
	 if ( $_SERVER["REQUEST_URI"] == '/' ):
	?>

	<section class="header">
	 ヘッダー
	</section>

	<?php
	 endif;
	?>

WordpressでJavaScriptを読み込む

パターンは何個かあるけど、wp_enqueue_scriptsで読み込むパターン。functions.phpに書いた。

テーマ直下/functions.php
//テーマディレクトリまでのパスの定数
define("DIRE", get_template_directory_uri());

function add_files(){

//     wp_enqueue_style('my_style',DIRE.'/style.css');
    wp_enqueue_script('common_script', DIRE.'/assets/js/common.js');

}

add_action('wp_enqueue_scripts', 'add_files');

参考↓

WordPressでファイルを読み込むためのwp_enqueue_styleとwp_enqueue_scriptの使い方と引数の意味を理解しておこう

エラー処理

Call to undefined function wp()

wp-config.phpの設定ミスか、パーミッションの問題。

参考

0
1
0

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
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?