質問編集履歴

3

関数名の修正

2020/10/24 01:36

投稿

welcome
welcome

スコア10

test CHANGED
File without changes
test CHANGED
@@ -78,7 +78,7 @@
78
78
 
79
79
  <li>
80
80
 
81
- <?php $renovaAfter = SCF::get('test'); echo wp_get_attachment_image( $test , 'large' );?>
81
+ <?php $After = SCF::get('test'); echo wp_get_attachment_image( $test , 'large' );?>
82
82
 
83
83
  <?php echo $img_gallery_item01; ?>
84
84
 
@@ -196,7 +196,7 @@
196
196
 
197
197
  <li>
198
198
 
199
- <?php $renovaAfter = SCF::get('test'); echo wp_get_attachment_image( $test , 'large' );?>
199
+ <?php $After = SCF::get('test'); echo wp_get_attachment_image( $test , 'large' );?>
200
200
 
201
201
  <?php echo $img_gallery_item01; ?>
202
202
 
@@ -312,7 +312,7 @@
312
312
 
313
313
  <li>
314
314
 
315
- <?php $renovaAfter = SCF::get('test'); echo wp_get_attachment_image( $test , 'large' );?>
315
+ <?php $After = SCF::get('test'); echo wp_get_attachment_image( $test , 'large' );?>
316
316
 
317
317
  <?php echo $img_gallery_item01; ?>
318
318
 

2

読み込んでいるファイルを追記

2020/10/24 01:36

投稿

welcome
welcome

スコア10

test CHANGED
File without changes
test CHANGED
@@ -32,9 +32,23 @@
32
32
 
33
33
 
34
34
 
35
-
35
+ flexsliderに関する
36
+
36
-
37
+ 読み込んでいるファイル
38
+
39
+ flexslider.css
40
+
41
+ jquery.flexslider.js
42
+
43
+ http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js
44
+
45
+
46
+
47
+
48
+
37
- ```ここに言語を入力
49
+ ```ここに言語を入力
50
+
51
+
38
52
 
39
53
  <div class="flexslider carousel">
40
54
 

1

試したこと追記

2020/10/20 06:00

投稿

welcome
welcome

スコア10

test CHANGED
File without changes
test CHANGED
@@ -128,8 +128,200 @@
128
128
 
129
129
 
130
130
 
131
- それとも、
131
+
132
-
133
- flexsliderはスマホやタブレットでは動かないのでしょうか。
132
+
133
+
134
+
135
+
136
+
137
+
134
138
 
135
139
  どなたかお力添えをお願いいたします。
140
+
141
+
142
+
143
+
144
+
145
+
146
+
147
+
148
+
149
+
150
+
151
+ 追記
152
+
153
+
154
+
155
+ ```ここに言語を入力
156
+
157
+ <div class="flexslider carousel">
158
+
159
+ <ul class="slides">
160
+
161
+
162
+
163
+ <?php
164
+
165
+ $arg = array(
166
+
167
+ 'posts_per_page' => 3, // 表示する件数
168
+
169
+ );
170
+
171
+ $posts = get_posts( $arg ); if( $posts ): ?>
172
+
173
+
174
+
175
+ <?php foreach ( $posts as $post ) :setup_postdata( $post ); ?>
176
+
177
+ <?php if (has_post_thumbnail()) : ?>
178
+
179
+ <?php the_post_thumbnail('thumbnail'); ?>
180
+
181
+ <?php else : ?>
182
+
183
+ <li>
184
+
185
+ <?php $renovaAfter = SCF::get('test'); echo wp_get_attachment_image( $test , 'large' );?>
186
+
187
+ <?php echo $img_gallery_item01; ?>
188
+
189
+ <a href="<?php the_permalink(); ?>">
190
+
191
+ <span><?php the_title(); ?></span>
192
+
193
+ </a>
194
+
195
+ </li>
196
+
197
+ <?php endif ; ?>
198
+
199
+
200
+
201
+ <?php endforeach; ?>
202
+
203
+
204
+
205
+ </ul>
206
+
207
+ </div>
208
+
209
+ <?php endif; wp_reset_postdata();?>
210
+
211
+ ```
212
+
213
+
214
+
215
+
216
+
217
+ ### 試したこと
218
+
219
+ footerで読み込んでいるflexsliderの記述を変えてみました。
220
+
221
+ $の表記をjQueryに変更してみたが、変化なし。
222
+
223
+ ```ここに言語を入力
224
+
225
+ jQuery(window).on("load", function () {
226
+
227
+ jQuery('.flexslider').flexslider({
228
+
229
+ animation: "slide",
230
+
231
+ animationLoop: false,
232
+
233
+ itemWidth: 280,
234
+
235
+ itemMargin: 80,
236
+
237
+ mousewheel: true,
238
+
239
+ rtl: true
240
+
241
+ });
242
+
243
+ ```
244
+
245
+
246
+
247
+
248
+
249
+
250
+
251
+ 追記
252
+
253
+ 試したこと
254
+
255
+ <ul class="slide>
256
+
257
+
258
+
259
+ </ul>
260
+
261
+ を試しにコメントアウトしてみたところ
262
+
263
+ スマホ実機、タブレット実機でも表示できた。
264
+
265
+ もはやスライダーの機能はないので、どうにかする必要がありそうです。
266
+
267
+
268
+
269
+ ```ここに言語を入力
270
+
271
+ <div class="flexslider carousel">
272
+
273
+
274
+
275
+ <ul class="slides">//コメントアウト
276
+
277
+
278
+
279
+ <?php
280
+
281
+ $arg = array(
282
+
283
+ 'posts_per_page' => 3, // 表示する件数
284
+
285
+ );
286
+
287
+ $posts = get_posts( $arg ); if( $posts ): ?>
288
+
289
+
290
+
291
+ <?php foreach ( $posts as $post ) :setup_postdata( $post ); ?>
292
+
293
+ <?php if (has_post_thumbnail()) : ?>
294
+
295
+ <?php the_post_thumbnail('thumbnail'); ?>
296
+
297
+ <?php else : ?>
298
+
299
+ <li>
300
+
301
+ <?php $renovaAfter = SCF::get('test'); echo wp_get_attachment_image( $test , 'large' );?>
302
+
303
+ <?php echo $img_gallery_item01; ?>
304
+
305
+ <a href="<?php the_permalink(); ?>">
306
+
307
+ <span><?php the_title(); ?></span>
308
+
309
+ </a>
310
+
311
+ </li>
312
+
313
+ <?php endif ; ?>
314
+
315
+
316
+
317
+ <?php endforeach; ?>
318
+
319
+
320
+
321
+ </ul>//コメントアウト
322
+
323
+ </div>
324
+
325
+ <?php endif; wp_reset_postdata();?>
326
+
327
+ ```