extendeing可能會存在關於如何更改單個自定義帖子類型的元顯示的問題,非常感謝TimRDD提供的有用答案,現在我擁有了另一個題。 工作產生代碼wordpress:如何在單個自定義帖子類型之間添加元字詞之間的逗號
<?php
//get all taxonomies and terms for this post (uses post's post_type)
foreach ((array) get_object_taxonomies($post->post_type) as $taxonomy) {
$object_terms = wp_get_object_terms($post->ID, $taxonomy, array('fields' => 'all'));
if ($object_terms) {
echo '- '.$taxonomy;
foreach ($object_terms as $term) {
echo '<a href="' . esc_attr(get_term_link($term, $taxonomy)) . '" title="' . sprintf(__("View all posts in %s"), $term->name) . '" ' . '>' . $term->name.'</a> ';
}
}
}
}
?>
顯示在一個單一的行,但它們之間沒有逗號,諸如術語: ( - Proceeding2015 - keywordsbusinessconsumerresearch)。
我需要你們的幫助,請在術語之間的每一組術語和逗號之後加上(:)來顯示它們,例如: ( - 繼續:2015 - 關鍵字:商業,消費者,研究)。
它的工作!非常感謝:) – nisr 2015-01-23 18:58:28
請問有什麼方法可以使代碼顯示特定分類法(如關鍵字)的術語,而不是所有分類法中的所有術語?我試圖用fields'=>'keyword'來替換fields'=>'all',但它不起作用!有什麼建議嗎? – nisr 2015-01-23 19:02:43