如果存在自定义帖子的子“section”,我会尝试回显它。我只想显示第二级或子级部分。这是可行的,但是,如果不存在第二个级别,它将显示第一个级别部分。
$terms = get_the_terms($post->ID, \'section\' );
if ($terms && ! is_wp_error($terms)) :
$term_slugs_arr = array(
);
foreach ($terms as $term) {
$term_slugs_arr[0] = $term->name;
}
$terms_slug_str = join( " ", $term_slugs_arr);
endif;
echo \'<p class="sub-section">\'.$terms_slug_str.\'</p>\';