質問編集履歴
2
具体的な関数を追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -316,9 +316,9 @@
|
|
316
316
|
|
317
317
|
|
318
318
|
|
319
|
-
'name' => ターム名
|
319
|
+
'name' => single_term_title( '' , $display = false ), //ターム名
|
320
|
-
|
320
|
+
|
321
|
-
'url' => 表示しているタームアーカイブページのリンクURL
|
321
|
+
'url' => get_term_link( $term_id, $taxonomy_name ), //表示しているタームアーカイブページのリンクURL
|
322
322
|
|
323
323
|
|
324
324
|
|
1
記事一覧に出力したいデータを追記しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -298,6 +298,62 @@
|
|
298
298
|
|
299
299
|
|
300
300
|
|
301
|
+
##記事一覧に出力したい構造化データ
|
302
|
+
|
303
|
+
|
304
|
+
|
305
|
+
ターム名(そのページのカテゴリ名)と
|
306
|
+
|
307
|
+
そのページのURLを表示させるようにしたいです。
|
308
|
+
|
309
|
+
|
310
|
+
|
311
|
+
```ここに言語を入力
|
312
|
+
|
313
|
+
'@context' => 'http://schema.org',
|
314
|
+
|
315
|
+
'@type' => 'LocalBusiness',
|
316
|
+
|
317
|
+
|
318
|
+
|
319
|
+
'name' => ターム名,
|
320
|
+
|
321
|
+
'url' => 表示しているタームアーカイブページのリンクURL,
|
322
|
+
|
323
|
+
|
324
|
+
|
325
|
+
'mainEntityOfPage' => array(
|
326
|
+
|
327
|
+
'@type' => 'WebPage',
|
328
|
+
|
329
|
+
'@id' => get_permalink(),
|
330
|
+
|
331
|
+
),
|
332
|
+
|
333
|
+
|
334
|
+
|
335
|
+
'publisher' => array(
|
336
|
+
|
337
|
+
'@type' => 'Organization',
|
338
|
+
|
339
|
+
'name' => get_bloginfo('name'),
|
340
|
+
|
341
|
+
'logo' => $logo,
|
342
|
+
|
343
|
+
),
|
344
|
+
|
345
|
+
|
346
|
+
|
347
|
+
'image' => $images,
|
348
|
+
|
349
|
+
);
|
350
|
+
|
351
|
+
```
|
352
|
+
|
353
|
+
|
354
|
+
|
355
|
+
|
356
|
+
|
301
357
|
|
302
358
|
|
303
359
|
どうぞよろしくおねがいします。
|