在wordpress中,如何显示上一个和下一个类别名称?

时间:2013-03-13 16:29:17

标签: wordpress categories

假设有类别1,类别2,类别3等。 我在第2类的帖子页面上。我想在内容区域显示上一个和下一个类别名称,即“类别1”和“类别3”。

我该怎么做?

1 个答案:

答案 0 :(得分:2)

能够弄清楚。

<?php
            $categories = get_the_category();
            $separator = ' ';
            $output = '';
            if($categories){
                foreach($categories as $category) {
                    $prev_step .= '<a href="'.get_category_link( $category->term_id-1 ).'" title="' . esc_attr( sprintf( __( "View all posts in %s" ), $category->name ) ) . '" class="previous-step">'.get_cat_name( $category->term_id-1 ).'</a>'.$separator;
                    $next_step .= '<a href="'.get_category_link( $category->term_id+1 ).'" title="' . esc_attr( sprintf( __( "View all posts in %s" ), $category->name ) ) . '" class="next-step">'.get_cat_name( $category->term_id+1 ).'</a>'.$separator;
                }
            }
            ?>
        <?php echo trim($prev_step, $separator);?>
        <?php echo trim($next_step, $separator);?>