我正在創建函數來爲我的帖子輸出Microdata。我想使用分類標準爲meta-keywords
,所以我需要將它們輸出爲以逗號分隔的文本。如何將Wordpress Taxonomy輸出爲文本,然後將它們用作元關鍵字?
我試圖遵循this question here中的解決方案,但根本沒有結果。
第一次嘗試:
echo '<meta itemprop="keywords" content="';
$terms = get_the_term_list($post->ID,', ');
$terms = strip_tags($terms);
echo $terms;
echo '"/>';
第二次嘗試:
$terms = get_the_term_list($post->ID,', ');
$terms = strip_tags($terms);
echo '<meta itemprop="keywords" content="';
echo $terms;
echo '"/>';
第三次嘗試:
$terms = get_the_term_list($post->ID,', ');
$terms = strip_tags($terms);
echo '<meta itemprop="keywords" content="';
$terms;
echo '"/>';
所有的嘗試並沒有導致任何輸出。你可以請告知,如果有辦法達到這樣的輸出:
<meta itemprop="keywords" content="category1,category2,tag1,tag2,tag3"/>
在此先感謝。
我想實現的想法不是重複在另一個字段中手動重新添加分類。我已經有了一個將它們添加爲自定義字段的解決方案,但這是雙重工作。 –