我已经有一个模板循环浏览了您选择的主要类别中的每个子类别。每个我想要超链接的标题,所以如果你选择一个子类别,你现在可以去那个特定的类别帖子。
但是,当使用<?php get_category_link( $category_id ); ?>
时,它会输出父类别的永久链接。
<div class="row">
<?php $i = 1; $categories = get_categories("child_of=$cat"); foreach ($categories as $cat) { ?>
<div class="col-md-6">
<?php query_posts("cat=$cat->cat_ID&posts_per_page=1&order=ASC&orderby=name"); ?>
<div class="top-category-container">
<div class="category-label">
<span>Latest From</span>
<h2><a href="#"><?php single_cat_title(); ?></a></h2>
</div>
<?php while (have_posts()) : the_post(); ?>
<div class="post">
<h3><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3>
<div class="article-img">
<a href="<?php the_permalink(); ?>"><?php echo the_post_thumbnail('', array('class' => 'img-responsive')); ?></a>
</div>
<p><?php the_excerpt(); ?></p>
</div>
<?php endwhile; ?>
</div>
</div>
<?php } ?>
</div>
答案 0 :(得分:2)
更改
<h2><a href="#"><?php single_cat_title(); ?></a></h2>
到
<h2><a href="<?php $cat = get_term_by('name', single_cat_title('',false), 'category'); echo $cat->slug; ?>"><?php single_cat_title(); ?></a></h2>