百度网盘做存储网站,深圳网站 商城制作,王也图片帅气壁纸,爱站权重是怎么计算的专为导航而生#xff0c;在wordpress模板制作过程中常常会在做breadcrumbs导航时会用到#xff0c;子分类调用父分类的名称和链接#xff0c;下面这段简洁的代码#xff0c;可以完美解决这个问题。
?php echo get_category_parents( $cat, true, raquo; ); ?…专为导航而生在wordpress模板制作过程中常常会在做breadcrumbs导航时会用到子分类调用父分类的名称和链接下面这段简洁的代码可以完美解决这个问题。
?php echo get_category_parents( $cat, true, raquo; ); ?
下面这种方法也可以不过代码不够简洁。
?php
if ( is_category() ) {// Get the current category term id.$query_obj get_queried_object();$term_id $query_obj-term_id;echo get_term_parents_list( $term_id, category );
}
?
第三种方法调用分类目录名称和链接作为导航。
?php
if ( ( is_tax() || is_category() || is_tag() ) ) {$trail ;$home /a href . get_home_url() . Home/a;$query_obj get_queried_object();$term_id $query_obj-term_id;$taxonomy get_taxonomy( $query_obj-taxonomy );if ( $term_id $taxonomy ) {// Add taxonomy label name to the trail.// $trail . / . $taxonomy-labels-menu_name;// Add term parents to the trail.$trail . / . get_term_parents_list( $term_id, $taxonomy-name, array( inclusive false ) );}// Print trail and add current term name at the end.echo p classbreadcrumb-trail . $home . $trail . $query_obj-name . /p;
}
? 原文
http://www.chudafu.com/jianzhan/4409.html