質問編集履歴
2
修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -34,6 +34,30 @@
|
|
34
34
|
|
35
35
|
|
36
36
|
|
37
|
-
|
37
|
+
```
|
38
38
|
|
39
|
+
<?php if ( is_page('') ): ?>
|
40
|
+
|
41
|
+
<link rel="stylesheet" href="<?php echo get_template_directory_uri() ?>/css/top.css">
|
42
|
+
|
43
|
+
<?php elseif ('blog-page') : ?>
|
44
|
+
|
45
|
+
<link rel="stylesheet" href="<?php echo get_template_directory_uri() ?>/css/blog.css">
|
46
|
+
|
47
|
+
<?php elseif ('contact') : ?>
|
48
|
+
|
49
|
+
<link rel="stylesheet" href="<?php echo get_template_directory_uri() ?>/css/contactform.css">
|
50
|
+
|
51
|
+
<?php elseif ('company') : ?>
|
52
|
+
|
53
|
+
<link rel="stylesheet" href="<?php echo get_template_directory_uri() ?>/css/about.css">
|
54
|
+
|
55
|
+
<?php endif; ?>
|
56
|
+
|
57
|
+
```
|
58
|
+
|
59
|
+
|
60
|
+
|
39
|
-
し
|
61
|
+
上記コードでトライしましたが、トップページと上から2番目の記事一覧ページのみcssが当たった状態で他二つはcssが当たっていません。
|
62
|
+
|
63
|
+
functions.phpでの記載もしようと記事を読みあさりコードをコピペしましたが、うまくいかず、header.phpで読み込む方が簡単だと思いました。
|
1
文変更
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
Wordpressのheader.phpで固定ページごとにcssを読み込
|
1
|
+
Wordpressのheader.phpで固定ページごとにcssを読み込ませたい
|
test
CHANGED
File without changes
|