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

蜡笔 WordPress经验评论217阅读模式

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

在 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 } ?>

weinxin
我的微信
微信及版权声明
本站原创文章转载请注明文章出处及链接,谢谢合作!其他文章来源于网络,如有侵权,请联系我!
WordPress经验

WordPress登陆之后返回登陆前的页面

在默认情况,WordPress博客登陆之后会直接进入管理后台,但是若想登陆后返回登陆前的页面该怎么办呢?或者网友从搜索引擎通过搜索进入你的站点,如果想在当前页面注册登陆,默认登陆会...
评论  0  访客  0
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定