wordpress网站子分类如何获取父分类的名称和链接
问:老师你好,我学习了网站制作课程,然后自己用wordpress程序做了一个网站,在网站的后台添加了几个分类,有一个分类下面还包含了几个子分类,我想问一下在子分类页面下,怎么去获取它的父分类的名称以及它的链接?麻烦回答一下,不胜感谢。
答:在wordpress中,子分类如何获取父分类的名称和链接可以使用以下的代码:
<?php the_category(', ') ?>
只调用父分类的名称不带链接:
<?php foreach((get_the_category()) as $category){echo $category->cat_name;}?>
只调用父分类的链接:
<?php echo get_category_link($category);?>
同样,我们自己建网站时,也可以实现在网站父级分类页面调用它的所有子分类以及子分类下面的文章,方法:https://www.xuewangzhan.net/wpbbs/6936.html
在wordpress中,可以实现在网站父级分类页面调用它的所有子分类以及子分类下面的文章,可以使用下面的代码:
global $cat;
$cats = get_categories(array(
‘child_of’ => $cat,
‘parent’ => $cat,
‘hide_empty’ => 0
));
$c = get_category($cat);
if(empty($cats)){
?>
<?php
}else{
foreach($cats as $the_cat){
$posts = get_posts(array(
‘category’ => $the_cat->cat_ID,
‘numberposts’ => 10,
));
if(!empty($posts)){
echo ‘
<div class="main-panel left245">
<div class="axw-tab border_all"><h2><a title="’.$the_cat- rel="nofollow">name.’" href="’.get_category_link($the_cat).’">’.$the_cat->name.'</a></h2><span class="moer"><a title="’.$the_cat- rel="nofollow">name.’" href="’.get_category_link($the_cat).’" rel="nofollow" target="_blank">更多 >></a></span></div>
<div class="main-inner border_no">
<div class="course-main-catalog">
<ul class="clearfix">';
foreach($posts as $post){
echo ‘<li class="bd"><a class="course-name" title="’.$post- rel="nofollow">post_title.’" href="’.get_permalink($post->ID).’" target="_blank">’.$post->post_title.'</a><span class="catalog-time"><b>’.mysql2date(‘Y-m-d’, $post->post_date).’ </b></span></li>';
}
echo ‘</ul>
</div></div></div>';
}
}
}
?>