Wordpress获得类别链接

时间:2013-02-11 16:36:44

标签: php wordpress

我想询问如何获取每个类别的相关帖子的链接。我只得到一些只显示父类别的代码。任何帮助将非常感激。谢谢!

<?php

$categories = get_categories();

foreach ($categories as $cat){
   if($cat->parent < 1){
      echo $cat->cat_name ;
   }
}

?>

2 个答案:

答案 0 :(得分:9)

听起来你可能需要get_category_link - 类似

$categories = get_categories();
foreach ($categories as $cat) {
   $category_link = get_category_link($cat->cat_ID);
   echo '<a href="'.esc_url( $category_link ).'" title="'.esc_attr($cat->name).'">'.$cat->name.'</a>';
}

应该打印出类别链接。

答案 1 :(得分:1)

根据Function Reference/get category link

<?php get_category_link( $category_id ); ?> 

示例:

<?php
// Get the ID of a given category
$category_id = get_cat_ID( 'Category Name' );

// Get the URL of this category
$category_link = get_category_link( $category_id );
?>

<!-- Print a link to this category -->
<a href="<?php echo esc_url( $category_link ); ?>" title="Category Name">Category Name</a>