如何添加"否则"到了" foreach"?

时间:2017-02-24 07:14:14

标签: php wordpress foreach

我不知道如何将else添加到foreach

这是我的代码:

<?php $terms = get_the_terms( $post->ID , 'actor' ); 
    foreach ( $terms as $term ) {
        $term_link = get_term_link( $term, 'actor' );
        if( is_wp_error( $term_link ) )
        continue;
        echo '<a href="' . $term_link . '">' . $term->name . '</a>';
    }
?>

0 个答案:

没有答案