質問編集履歴
1
追加質問
test
CHANGED
File without changes
|
test
CHANGED
@@ -97,3 +97,41 @@
|
|
97
97
|
の($count)の部分が間違っているのでしょうか?
|
98
98
|
|
99
99
|
そのほかにも間違っているところがあればご教授いただければ幸いです。
|
100
|
+
|
101
|
+
|
102
|
+
|
103
|
+
修正箇所(function.php)
|
104
|
+
|
105
|
+
```PHP
|
106
|
+
|
107
|
+
#変更前$tags = get_terms( array( 'taxonomy'=>'post_tag', 'get'=>'all' ) );
|
108
|
+
|
109
|
+
|
110
|
+
|
111
|
+
$args = array(
|
112
|
+
|
113
|
+
'get' => 'all',
|
114
|
+
|
115
|
+
'orderby' => 'count',
|
116
|
+
|
117
|
+
);
|
118
|
+
|
119
|
+
$terms = get_tags($args);
|
120
|
+
|
121
|
+
echo $terms;
|
122
|
+
|
123
|
+
```
|
124
|
+
|
125
|
+
修正箇所(searchform.php)
|
126
|
+
|
127
|
+
```php
|
128
|
+
|
129
|
+
#変更前 <div id="search-result-count">該当件数:<?php echo $count->count; ?>件</div>
|
130
|
+
|
131
|
+
|
132
|
+
|
133
|
+
<div id="search-result-count">該当件数:<span></span>件</div>
|
134
|
+
|
135
|
+
|
136
|
+
|
137
|
+
```
|