deepthan/Front-end-resource-collection

点击某个分类名称直接进入分类内容

deepthan opened this issue · 0 comments

  • 通过分类别名获取Wordpress分类链接:
 <?php
  $cat=get_category_by_slug('wordpress');
  $cat_links=get_category_link($cat->term_id);
?>
<a href="<?php echo $cat_links; ?>" title="<?php echo $cat->name; ?>">更多</a>
 
  • 通过分类ID获取Wordpress分类链接
<?php
    $cat=get_term_by('id', 12, 'category');
    $cat_links=get_category_link($cat->term_id);
?>
<a href="<?php echo $cat_links; ?>" title="<?php echo $cat->name; ?>">更多</a>