• I created taxonomy page taxonomy-portfolio.category.php in which I display list of custom post connected with that custonomy. I display a title of the page like this

    <h1><?php if( is_tax() ) {
    global $wp_query;
    $term = $wp_query->get_queried_object();
    $title = $term->name;
    $description = $term->description;
    
    echo $title;
    echo '<span>' . $description . '</span>';
     }
     ?></h1>

    I want to display next to the title links to next or previous (if exists) taxonomy items (not custom posts but it’s taxonomies).

    Kind regards,

    Arek

  • The topic ‘taxonomy page next prev link’ is closed to new replies.