Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
deepthan opened this issue Jan 28, 2018 · 0 comments
Open

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

deepthan opened this issue Jan 28, 2018 · 0 comments

Comments

@deepthan
Copy link
Owner

  • 通过分类别名获取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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant