質問編集履歴

1

追記

2021/09/24 12:13

投稿

niconic73027793
niconic73027793

スコア215

test CHANGED
File without changes
test CHANGED
@@ -59,6 +59,54 @@
59
59
  }
60
60
 
61
61
  ```
62
+
63
+ 下記がヘッダーphp のソース
64
+
65
+ ```ここに言語を入力
66
+
67
+ <meta charset="utf-8">
68
+
69
+ <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
70
+
71
+
72
+
73
+
74
+
75
+
76
+
77
+
78
+
79
+ <!-- Bootstrap core CSS -->
80
+
81
+ <link href="<?php echo get_template_directory_uri(); ?>/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
82
+
83
+
84
+
85
+ <!-- Custom fonts for this template -->
86
+
87
+ <link href="<?php echo get_template_directory_uri(); ?>/vendor/fontawesome-free/css/all.min.css" rel="stylesheet" type="text/css">
88
+
89
+ <link href='//fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
90
+
91
+ <link href='//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/css'>
92
+
93
+
94
+
95
+ <!-- Custom styles for this template -->
96
+
97
+ <link href="<?php echo get_template_directory_uri(); ?>/css/clean-blog.min.css" rel="stylesheet">
98
+
99
+ <?php wp_head(); ?>
100
+
101
+ ```
102
+
103
+
104
+
105
+
106
+
107
+
108
+
109
+
62
110
 
63
111
  投稿ページのソース
64
112