色综合图-色综合图片-色综合图片二区150p-色综合图区-玖玖国产精品视频-玖玖香蕉视频

您的位置:首頁技術文章
文章詳情頁

WordPress免插件實現面包屑導航的示例代碼

瀏覽:137日期:2022-06-01 18:04:26

你如果在開發自己的wordpress主題,想加入面包屑導航,而又不想使用插件的話,下面的代碼對你有幫助,這里提供了網上較為流行的兩種代碼,一是功能非常完善的,一是一個較為簡潔的代碼。

前面介紹了一種方法,你也可以嘗試一下,在文末給大家詳細介紹了自定義函數實現wordpress面包屑導航的代碼,可以點擊查看下。

功能非常完善代碼

1、將下面的代碼添加到主題的 functions.php

/** * WordPress 添加面包屑導航 * http://www.511yj.com/wordpress-add-breadcrumb.html */function cmp_breadcrumbs() { $delimiter = ’»’; // 分隔符 $before = ’<span class='current'>’; // 在當前鏈接前插入 $after = ’</span>’; // 在當前鏈接后插入 if ( !is_home() && !is_front_page() || is_paged() ) { echo ’<div itemscope itemtype='http://schema.org/WebPage' id='crumbs'>’.__( ’當前位置:’ , ’cmp’ ); global $post; $homeLink = home_url(); echo ’ <a itemprop='breadcrumb' href='http://www.lshqa.cn/bcjs/’ . $homeLink . ’' rel='external nofollow' >’ . __( ’無作為’ , ’cmp’ ) . ’</a> ’ . $delimiter . ’ ’; if ( is_category() ) { // 分類 存檔 global $wp_query; $cat_obj = $wp_query->get_queried_object(); $thisCat = $cat_obj->term_id; $thisCat = get_category($thisCat); $parentCat = get_category($thisCat->parent); if ($thisCat->parent != 0){ $cat_code = get_category_parents($parentCat, TRUE, ’ ’ . $delimiter . ’ ’); echo $cat_code = str_replace (’<a’,’<a itemprop='breadcrumb'’, $cat_code ); } echo $before . ’’ . single_cat_title(’’, false) . ’’ . $after; } elseif ( is_day() ) { // 天 存檔 echo ’<a itemprop='breadcrumb' href='http://www.lshqa.cn/bcjs/’ . get_year_link(get_the_time(’Y’)) . ’' rel='external nofollow' rel='external nofollow' >’ . get_the_time(’Y’) . ’</a> ’ . $delimiter . ’ ’; echo ’<a itemprop='breadcrumb' href='http://www.lshqa.cn/bcjs/’ . get_month_link(get_the_time(’Y’),get_the_time(’m’)) . ’' rel='external nofollow' >’ . get_the_time(’F’) . ’</a> ’ . $delimiter . ’ ’; echo $before . get_the_time(’d’) . $after; } elseif ( is_month() ) { // 月 存檔 echo ’<a itemprop='breadcrumb' href='http://www.lshqa.cn/bcjs/’ . get_year_link(get_the_time(’Y’)) . ’' rel='external nofollow' rel='external nofollow' >’ . get_the_time(’Y’) . ’</a> ’ . $delimiter . ’ ’; echo $before . get_the_time(’F’) . $after; } elseif ( is_year() ) { // 年 存檔 echo $before . get_the_time(’Y’) . $after; } elseif ( is_single() && !is_attachment() ) { // 文章 if ( get_post_type() != ’post’ ) { // 自定義文章類型 $post_type = get_post_type_object(get_post_type()); $slug = $post_type->rewrite; echo ’<a itemprop='breadcrumb' href='http://www.lshqa.cn/bcjs/’ . $homeLink . ’/’ . $slug[’slug’] . ’/' rel='external nofollow' >’ . $post_type->labels->singular_name . ’</a> ’ . $delimiter . ’ ’; echo $before . get_the_title() . $after; } else { // 文章 post $cat = get_the_category(); $cat = $cat[0]; $cat_code = get_category_parents($cat, TRUE, ’ ’ . $delimiter . ’ ’); echo $cat_code = str_replace (’<a’,’<a itemprop='breadcrumb'’, $cat_code ); echo $before . get_the_title() . $after; } } elseif ( !is_single() && !is_page() && get_post_type() != ’post’ ) { $post_type = get_post_type_object(get_post_type()); echo $before . $post_type->labels->singular_name . $after; } elseif ( is_attachment() ) { // 附件 $parent = get_post($post->post_parent); $cat = get_the_category($parent->ID); $cat = $cat[0]; echo ’<a itemprop='breadcrumb' href='http://www.lshqa.cn/bcjs/’ . get_permalink($parent) . ’' rel='external nofollow' >’ . $parent->post_title . ’</a> ’ . $delimiter . ’ ’; echo $before . get_the_title() . $after; } elseif ( is_page() && !$post->post_parent ) { // 頁面 echo $before . get_the_title() . $after; } elseif ( is_page() && $post->post_parent ) { // 父級頁面 $parent_id = $post->post_parent; $breadcrumbs = array(); while ($parent_id) { $page = get_page($parent_id); $breadcrumbs[] = ’<a itemprop='breadcrumb' href='http://www.lshqa.cn/bcjs/’ . get_permalink($page->ID) . ’' rel='external nofollow' >’ . get_the_title($page->ID) . ’</a>’; $parent_id = $page->post_parent; } $breadcrumbs = array_reverse($breadcrumbs); foreach ($breadcrumbs as $crumb) echo $crumb . ’ ’ . $delimiter . ’ ’; echo $before . get_the_title() . $after; } elseif ( is_search() ) { // 搜索結果 echo $before ; printf( __( ’Search Results for: %s’, ’cmp’ ), get_search_query() ); echo $after; } elseif ( is_tag() ) { //標簽 存檔 echo $before ; printf( __( ’Tag Archives: %s’, ’cmp’ ), single_tag_title( ’’, false ) ); echo $after; } elseif ( is_author() ) { // 作者存檔 global $author; $userdata = get_userdata($author); echo $before ; printf( __( ’Author Archives: %s’, ’cmp’ ), $userdata->display_name ); echo $after; } elseif ( is_404() ) { // 404 頁面 echo $before; _e( ’Not Found’, ’cmp’ ); echo $after; } if ( get_query_var(’paged’) ) { // 分頁 if ( is_category() || is_day() || is_month() || is_year() || is_search() || is_tag() || is_author() ) echo sprintf( __( ’( Page %s )’, ’cmp’ ), get_query_var(’paged’) ); } echo ’</div>’; }}

前臺調用

<?php if(function_exists(’cmp_breadcrumbs’)) cmp_breadcrumbs();?>

下面看下自定義函數實現wordpress面包屑導航的代碼

面包屑導航 一是方便讀者所在的位置,更重要的是對SEO非常友好,利于蜘蛛知道你網站的目錄結構,所以給我們的wordpress主題添加面包屑導航是必須的。

1、在functioss.php添加以下代碼

/** * WordPress 添加面包屑導航 * 面包屑導航,直接輸出(echo) * Breadcrumb Trail * @param string $sep 導航對象分隔符,默認為’ > ’ */function bread_nav($sep = ’ > ’){ echo ’<div class='col-md-12 '><span class='glyphicon glyphicon-home text-primary'></span> 您當前的位置: <a href='http://www.lshqa.cn/bcjs/’. home_url() .’'>首頁</a>’; if ( is_category() ){ //如果是欄目頁面 global $cat;echo $sep . get_category_parents($cat, true, $sep) . ’文章列表’; }elseif ( is_page() ){ //如果是自定義頁面 echo $sep . get_the_title(); }elseif ( is_single() ){ //如果是文章頁面 $categories = get_the_category(); $cat = $categories[0]; echo $sep . get_category_parents($cat->term_id, true, $sep) .’正文內容 ’. get_the_title(); } echo ’</div>’;}

2、前臺調用

<?php bread_nav();?>

總結

到此這篇關于WordPress免插件實現面包屑導航的示例代碼的文章就介紹到這了,更多相關WordPress面包屑導航內容請搜索好吧啦網以前的文章或繼續瀏覽下面的相關文章希望大家以后多多支持好吧啦網!

標簽: word
相關文章:
主站蜘蛛池模板: 特级毛片免费观看视频 | 一级一级一片免费 | 99国产福利视频区 | 精品国产91久久久久 | 日本在线理论片 | 网站国产| 男人干女人的视频 | 国产乱子伦片免费观看中字 | 精品国产无限资源免费观看 | 波多野结衣在线视频免费观看 | 国产精品久久做爰 | 毛片在线看网站 | 2017天天爽夜夜爽精品视频 | 日本精品网 | 久久午夜影视 | 日本中文字幕不卡免费视频 | 欧美在线视频一区二区 | 国产成人91一区二区三区 | 日韩欧美日本 | www中文字幕 | 又黄又免费 | 欧美国产成人精品一区二区三区 | 国产精品变态重口在线 | 日韩精品在线一区 | 成年人www | 欧美成人精品大片免费流量 | 三级黄色免费看 | 久久精品国产一区二区三区 | 欧美成人短视频 | 亚洲天堂网在线视频 | 成年女人免费视频播放成年m | 日本免费在线一区 | 国产日产精品_国产精品毛片 | 欧美黄成人免费网站大全 | 亚洲日产综合欧美一区二区 | 日日干夜夜爽 | 欧美精品网址 | 久久夜色邦福利网 | 欧美一区二区三区四区在线观看 | 久青草免费在线视频 | 国产在线精品一区二区三区 |