如何从特定类别获取自定义查询中的动态类别链接

时间:2013-12-24 11:32:18

标签: php html css wordpress

为了满足我的要求,我使用下面的代码...

<div class="home_single_item_headline">
     <?php query_posts('post_type=post&category_name=Browser&post_status=publish&posts_per_page=6&paged='. get_query_var('paged')); ?>
     <a href="<?php bloginfo('url'); ?>/category/<?php $category = get_the_category(); echo $category[0]->category_nicename; ?>">Browser</a>                        
</div>
<div class="home_single_item_column floatleft">    
    <?php get_template_part('post-loop')?>
</div>

但我随机获得类别链接意味着其他类别链接。什么是正确的解决方案?

1 个答案:

答案 0 :(得分:1)

您应该使用get_category_link($ category_id)。

所以在你的情况下你会有:

<?php $category = get_the_category(); ?>
<a href="<?php echo get_category_link($category[0]->term_id); ?>">Browser</a>