質問編集履歴
2
終了しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,205 +1 @@
|
|
1
|
-
|
1
|
+
☆☆☆回答なしとのことで終了しました☆☆☆
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
sidebar.phpを作成するとウィジェットが消えてますので表示でできるようにしたいのです。
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
さらにfooterの位置もおかしくすべて右側によってしまっています。
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
これらをちゃんと表示するにはどのようにすればよいのでしょうか?
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
ざっくりした質問で申し訳けありません。
|
18
|
-
|
19
|
-
### sidebar.phpがある状態
|
20
|
-
|
21
|
-
![イメージ説明](d5ebb7f95127323c1cf216561a6e270d.png)
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
### sidebar.phpがない状態
|
26
|
-
|
27
|
-
![イメージ説明](934aefc1db436e3eaea5517116e4fc2c.png)
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
### ソース
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
index.php
|
36
|
-
|
37
|
-
```
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
<?php get_header(); ?>
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
<!-- コンテンツ -->
|
46
|
-
|
47
|
-
<main>
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
<?php if(have_posts()): while(have_posts()):the_post(); ?>
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
<div class="post">
|
56
|
-
|
57
|
-
<div class="rose_dy"><img src="<?php echo get_stylesheet_directory_uri(); ?>/img/rose_dy.png" /></img><p><time datetime="<?php the_time('m-d'); ?>"><?php the_time('m/d'); ?></time></p></div>
|
58
|
-
|
59
|
-
<p class="title"><?php echo mb_substr($post->post_title, 0, 32); ?></p>
|
60
|
-
|
61
|
-
<?php the_post_thumbnail(array(640, 480)); ?>
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
<p><a href="<?php the_permalink(); ?>">Read More</a></p></div>
|
66
|
-
|
67
|
-
<?php endwhile; endif; ?>
|
68
|
-
|
69
|
-
</main>
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
<?php get_sidebar(); ?>
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
<?php get_footer(); ?>
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
```
|
82
|
-
|
83
|
-
sidebar.php
|
84
|
-
|
85
|
-
```
|
86
|
-
|
87
|
-
<!-- sidebar -->
|
88
|
-
|
89
|
-
<?php if ( ! function_exists( 'dynamic_sidebar' ) || ! dynamic_sidebar( 'side' ) ) : ?><?php endif; ?>
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
<!-- /sidebar -->
|
94
|
-
|
95
|
-
```
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
functions.php
|
100
|
-
|
101
|
-
```
|
102
|
-
|
103
|
-
<?php
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
add_theme_support('post-thumbnails');
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
function my_setup() {
|
112
|
-
|
113
|
-
add_theme_support( 'post-thumbnails' ); /* アイキャッチ */
|
114
|
-
|
115
|
-
add_theme_support( 'automatic-feed-links' ); /* RSSフィード */
|
116
|
-
|
117
|
-
add_theme_support( 'title-tag' ); /* タイトルタグ自動生成 */
|
118
|
-
|
119
|
-
add_theme_support( 'html5', array( /* HTML5のタグで出力 */
|
120
|
-
|
121
|
-
'search-form',
|
122
|
-
|
123
|
-
'comment-form',
|
124
|
-
|
125
|
-
'comment-list',
|
126
|
-
|
127
|
-
'gallery',
|
128
|
-
|
129
|
-
'caption',
|
130
|
-
|
131
|
-
) );
|
132
|
-
|
133
|
-
}
|
134
|
-
|
135
|
-
add_action( 'after_setup_theme', 'my_setup' );
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
function my_script_init() {
|
142
|
-
|
143
|
-
wp_enqueue_style('style',get_template_directory_uri().'/style.css','',date('YmdGi', filemtime( get_template_directory().'/style.css' )),'' );
|
144
|
-
|
145
|
-
wp_deregister_script( 'jquery' );
|
146
|
-
|
147
|
-
wp_enqueue_script( 'jquery', '//ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js' );
|
148
|
-
|
149
|
-
wp_enqueue_style('jquery ',get_template_directory_uri().'/js/main.js','',date('YmdGi', filemtime( get_template_directory().'/js/main.js' )),'' );
|
150
|
-
|
151
|
-
}
|
152
|
-
|
153
|
-
add_action( 'wp_enqueue_scripts', 'my_script_init' );
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
function twpp_enqueue_scripts() {
|
158
|
-
|
159
|
-
wp_enqueue_script(
|
160
|
-
|
161
|
-
'main-script',
|
162
|
-
|
163
|
-
get_template_directory_uri() . '/js/main.js'
|
164
|
-
|
165
|
-
);
|
166
|
-
|
167
|
-
}
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
add_action( 'wp_enqueue_scripts', 'twpp_enqueue_scripts' );
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
function wpqw_widgets_init() {
|
176
|
-
|
177
|
-
register_sidebars( 1, array(
|
178
|
-
|
179
|
-
'name' => 'side',
|
180
|
-
|
181
|
-
'id' => 'side',
|
182
|
-
|
183
|
-
'description' => '説明が入ります',
|
184
|
-
|
185
|
-
'before_widget' => '<div id="%1$s" class="widget %2$s">',
|
186
|
-
|
187
|
-
'after_widget' => '</div>',
|
188
|
-
|
189
|
-
'before_title' => '<h3 class="widget-title">',
|
190
|
-
|
191
|
-
'after_title' => '</h3>',
|
192
|
-
|
193
|
-
) );
|
194
|
-
|
195
|
-
}
|
196
|
-
|
197
|
-
add_action( 'widgets_init', 'wpqw_widgets_init' );
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
?>
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
```
|
1
画像追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -16,6 +16,18 @@
|
|
16
16
|
|
17
17
|
ざっくりした質問で申し訳けありません。
|
18
18
|
|
19
|
+
### sidebar.phpがある状態
|
20
|
+
|
21
|
+
![イメージ説明](d5ebb7f95127323c1cf216561a6e270d.png)
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
### sidebar.phpがない状態
|
26
|
+
|
27
|
+
![イメージ説明](934aefc1db436e3eaea5517116e4fc2c.png)
|
28
|
+
|
29
|
+
|
30
|
+
|
19
31
|
### ソース
|
20
32
|
|
21
33
|
|