0

カテゴリ 1、カテゴリ 2、カテゴリ 3 などがあるとします。そして、私はカテゴリ2の投稿ページにいます.「カテゴリ1」と「カテゴリ3」になるコンテンツ領域に前後のカテゴリ名を表示したいと思います。

どうやってやるの?

4

1 に答える 1

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);?>
于 2013-03-13T17:55:28.017 に答える