質問編集履歴

2

文言の追加

2019/12/20 06:37

投稿

no48
no48

スコア5

test CHANGED
File without changes
test CHANGED
@@ -29,3 +29,55 @@
29
29
  WordPress 5.3.2
30
30
 
31
31
  フルスクラッチで作成しております。
32
+
33
+
34
+
35
+ ### コード
36
+
37
+ 以下のコードをsearch.phpに記載してます。
38
+
39
+ <?php
40
+
41
+
42
+
43
+ $s = $_GET['_sf_s'];
44
+
45
+ $s = str_replace(' ',' ', $s );
46
+
47
+ $args = array(
48
+
49
+ 'paged' => $paged,
50
+
51
+ 's' => $s
52
+
53
+ );
54
+
55
+ $paged = get_query_var('paged') ? get_query_var('paged') : 1;
56
+
57
+ $loop = new WP_Query($args);
58
+
59
+
60
+
61
+ if ($loop -> have_posts() && get_search_query()) : while($loop -> have_posts()): $loop -> the_post();
62
+
63
+ ?>
64
+
65
+ <div class="col-lg-12 mb-2">
66
+
67
+ <div class="box">
68
+
69
+ <?php echo $name; ?>
70
+
71
+ <h4><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h4>
72
+
73
+ </div>
74
+
75
+
76
+
77
+ <?php endwhile; ?>
78
+
79
+ <?php else: ?>
80
+
81
+ <?php endif; ?>
82
+
83
+ <?php wp_reset_query(); ?>

1

誤字

2019/12/20 06:37

投稿

no48
no48

スコア5

test CHANGED
File without changes
test CHANGED
@@ -28,4 +28,4 @@
28
28
 
29
29
  WordPress 5.3.2
30
30
 
31
- 特定のテーマは使用してせん
31
+ フルスクラッチで作成しており