这应该是非常直接的,我期待着学习如何去做。
以下代码仅排除顶级父级。如何修改此代码以排除下一级别?
EG:
我的分层术语是World> Country> USA
我想展示美国,而不是世界或国家
$terms = get_the_terms( $post->ID, 'From' );
if ( !empty( $terms ) ) {
$output = array();
foreach ( $terms as $term ){
if( 0 != $term->parent )
$output[] = '<a href="' . get_term_link( $term ) .'">' . $term->name . '</a>';
}
if( count( $output ) )
echo '' . __('Categories:','om_theme') . '</b> ' . join( ", ", $output ) . '';
}
答案 0 :(得分:0)
echo '' . __('Categories:','om_theme') . '</b> ' . end($output) . '';