Blogger Information
Blog 263
fans 3
comment 2
visits 113061
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
wordpress获取分类链接和当前链接
福哥的博客
Original
1622 people have browsed it

代码一、通过分类别名获取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>

当前链接的数据库用法

global $wp;
 
$current_url = home_url(add_query_arg(array(),$wp->request));
 
echo $current_url;

普通用法

 the_permalink();


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post