質問編集履歴

2

PHPです

2017/03/31 06:41

投稿

KojiroYamamoto
KojiroYamamoto

スコア21

test CHANGED
File without changes
test CHANGED
@@ -69,3 +69,21 @@
69
69
  使用テーマ
70
70
 
71
71
  Twenty twelve
72
+
73
+ 子テーマは
74
+
75
+ ```PHP
76
+
77
+ <?php
78
+
79
+ add_action( 'wp_enqueue_scripts', 'enqueue_parent_theme_style' );
80
+
81
+ function enqueue_parent_theme_style() {
82
+
83
+ wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' );
84
+
85
+ }
86
+
87
+ ```
88
+
89
+ で読み込んでいます

1

変更しました。よろしくお願いします

2017/03/31 06:41

投稿

KojiroYamamoto
KojiroYamamoto

スコア21

test CHANGED
File without changes
test CHANGED
@@ -11,6 +11,8 @@
11
11
  です
12
12
 
13
13
 
14
+
15
+ ```CSS
14
16
 
15
17
  .site-header {
16
18
 
@@ -30,9 +32,13 @@
30
32
 
31
33
  }
32
34
 
35
+ ```
36
+
33
37
  などは反映されていますが、
34
38
 
35
39
  投稿ページのh3タグのcss
40
+
41
+ ```CSS
36
42
 
37
43
  .entry-content h3 {
38
44
 
@@ -46,8 +52,20 @@
46
52
 
47
53
  background-color: #000;}
48
54
 
55
+ ```
56
+
49
57
  などが反映されません。
50
58
 
51
59
  コードは間違ってないと思います。
52
60
 
53
61
  初心者ですので、どうかご回答よろしくお願い致します。
62
+
63
+
64
+
65
+ サイトURL
66
+
67
+ [http://rehabusiness.com/](http://rehabusiness.com/)
68
+
69
+ 使用テーマ
70
+
71
+ Twenty twelve