导读:建站技术建站技术之前大叔分享过一例 wordpress 面包屑 的代码教程,详情可见:GO 今天再分享一款更加细化的 wordpress面包屑导航,教程依然很简单,往func网站搭建建站技术模板。
之前模板下载吧分享过一例 wordpress面包屑 的代码教程,详情可见:GO 今天再分享一款更加细化的 wordpress面包屑导航,教程依然很简单,往functions.php加代码,然后前端调用即可,至于样式,自由发挥吧。代码如下:
function wpmomo_breadcrumb_html($post_id,$separator){
$path[] = wpmomo_breadcrumb_output( home_url('/'), '首页');
if( get_post_type($post_id)=='post' ) {
$cats_id = array();
$categories = get_the_category($post_id);
if($categories){
foreach($手机模板dedecategories as $category) {
if(!in_array($category->term_id,$cats_id)){
if ( $category->parent ){
$path[] = wpmomo_get_category_parents( $category->parent, $separator );
$cats_id[] = $category->parent;
}
$path[] = wpmomo_breadcrumb_output( get_category_link( $category->term_id ), $category->name);
$cats_id[] = $category->term_id;
}
}
}
}
if( is_singular() && !is_single() && !is_page() ){
$post_type = get_post_type();
$post_type_obj = get_post_type_object( $post_type );
$path[] = wpmomo_breadcrumb_output( get_post_type_archive_link( $post_type ), $post_type_obj->labels->singular_name);
}
$path[] = wpmomo_breadcrumb_output( get_permalink($post_id), get_the_title($post_id));
&nbsdede免费校板下战p;echo join( $separator ,$path);
关键词标签: 建站 面包屑 版本
声明: 本文由我的SEOUC技术文章主页发布于:2023-07-23 ,文章wordpress教程:面包屑导航(更细版本),建站技术主要讲述面包屑,版本,建站网站建设源码以及服务器配置搭建相关技术文章。转载请保留链接: https://www.seouc.com/article/web_35399.html