需要在所有单个页面上添加自定义post类型分类术语的链接,该链接可链接回单个页面所属的分类术语存档。
使用此代码,但它为所有税务术语添加了链接。我只需要分配给单个页面的那个页面。
$terms = get_terms( array(
\'taxonomy\' => \'portfolio\',
) );
if ( ! is_wp_error( $terms ) && ! empty( $terms ) ) {
foreach ( $terms as $term ) {
echo \'<a href="\' . get_term_link( $term->slug, \'portfolio\' ) . \'">\' . $term->name . \'</a>\';
}
}
我在单个投资组合中添加了此代码。php文件