質問編集履歴

1

追記しました

2019/03/15 05:06

投稿

mamamamamama
mamamamamama

スコア25

test CHANGED
File without changes
test CHANGED
@@ -211,3 +211,25 @@
211
211
  https://sample.jp/カスタム投稿名/?area[0]=area1&orderby=date&order=DESC#038;cate[0]=cate1
212
212
 
213
213
  ⇑「&」が「#038;」に文字化けしている??→URL入力欄で直接「#038;」を「&」に書き換えると、一覧が正常に表示されました。。
214
+
215
+
216
+
217
+ --追記--
218
+
219
+ 以下のコードを試してみましたが結果は変わらずでした。
220
+
221
+ ■functions.php
222
+
223
+ ```
224
+
225
+ function my_replace_amp($content) {
226
+
227
+ return str_replace('&', '&', $content);
228
+
229
+ }
230
+
231
+
232
+
233
+ add_filter('the_content', 'my_replace_amp');
234
+
235
+ ```