点我领取-糖果博客

在 WordPress 分类归档页面显示子分类名称及链接

将代码添加到分类归档模板文件主循环的上面:

<?php
	if ( is_category() ) {
		$this_category = get_category( $cat );
	}
?>
<?php
	if ( $this_category->category_parent )
		$this_category = wp_list_categories( 'orderby=id&show_count=0&title_li=&use_desc_for_title=1&child_of='.$this_category->category_parent."&echo=0" );
	else
		$this_category = wp_list_categories( 'orderby=id&depth=1&show_count=0&title_li=&use_desc_for_title=1&child_of='.$this_category->cat_ID."&echo=0" );
	if ( $this_category ) { ?>
	<ul>
		<?php echo $this_category; ?>
	</ul>
<?php } ?>
友情赞助

如果你喜欢我的内容,可以赞助我哦!你的一点点心意,是我不断前进的动力!
© 版权声明
THE END
喜欢就支持一下吧
点赞0赞赏 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容