下面由wordpress/" target="_blank">wordpress教程栏目给大家分享一个wordpress面包屑导航代码,希望对需要的朋友有所帮助!
转载分享一段WordPress面包屑导航代码,支持自定义帖子类型、自定义分类,但貌似在分类归档页面不能显示父子分类层级有点遗憾。
将代码添加到当前主题函数模板functions.php中:
/** * WordPress Breadcrumbs */ function tsh_wp_custom_breadcrumbs() { $separator = '/'; $breadcrumbs_id = 'tsh_breadcrumbs'; $breadcrumbs_class = 'tsh_breadcrumbs'; $home_title = esc_html__('Home', 'your-domain'); // Add here you custom post taxonomies $tsh_custom_taxonomy = 'product_cat'; global $post,$wp_query; // Hide from front page if ( !is_front_page() ) { echo '登录后复制
-
'; // Home echo '
- ' . $home_title . ' '; echo '
- ' . $separator . ' '; if ( is_archive() && !is_tax() && !is_category() && !is_tag() ) { echo '
- ' . post_type_archive_title('', false) . ' '; } else if ( is_archive() && is_tax() && !is_category() && !is_tag() ) { // For Custom post type $post_type = get_post_type(); // Custom post type name and link if($post_type != 'post') { $post_type_object = get_post_type_object($post_type); $post_type_archive = get_post_type_archive_link($post_type); echo '
- labels->name . '">' . $post_type_object->labels->name . ' '; echo '
- ' . $separator . ' '; } $custom_tax_name = get_queried_object()->name; echo '
- ' . $custom_tax_name . ' '; } else if ( is_single() ) { $post_type = get_post_type(); if($post_type != 'post') { $post_type_object = get_post_type_object($post_type); $post_type_archive = get_post_type_archive_link($post_type); echo '
- labels->name . '">' . $post_type_object->labels->name . ' '; echo '
- ' . $separator . ' '; } // Get post category $category = get_the_category(); if(!empty($category)) { // Last category post is in $last_category = $category[count($category) - 1]; // Parent any categories and create array $get_cat_parents = rtrim(get_category_parents($last_category->term_id, true, ','),','); $cat_parents = explode(',',$get_cat_parents); // Loop through parent categories and store in variable $cat_display $cat_display = ''; foreach($cat_parents as $parents) { $cat_display .= '
- '.$parents.' '; $cat_display .= '
- ' . $separator . ' '; } } $taxonomy_exists = taxonomy_exists($tsh_custom_taxonomy); if(empty($last_category) && !empty($tsh_custom_taxonomy) && $taxonomy_exists) { $taxonomy_terms = get_the_terms( $post->ID, $tsh_custom_taxonomy ); $cat_id = $taxonomy_terms[0]->term_id; $cat_nicename = $taxonomy_terms[0]->slug; $cat_link = get_term_link($taxonomy_terms[0]->term_id, $tsh_custom_taxonomy); $cat_name = $taxonomy_terms[0]->name; } // If the post is in a category if(!empty($last_category)) { echo $cat_display; echo '
- ID . '">ID . '" title="' . get_the_title() . '">' . get_the_title() . ' '; // Post is in a custom taxonomy } else if(!empty($cat_id)) { echo '
- ' . $cat_name . ' '; echo '
- ' . $separator . ' '; echo '
- ID . '">ID . '" title="' . get_the_title() . '">' . get_the_title() . ' '; } else { echo '
- ID . '">ID . '" title="' . get_the_title() . '">' . get_the_title() . ' '; } } else if ( is_category() ) { // Category page echo '
- ' . single_cat_title('', false) . ' '; } else if ( is_page() ) { // Standard page if( $post->post_parent ){ // Get parents $anc = get_post_ancestors( $post->ID ); // Get parents order $anc = array_reverse($anc); // Parent pages if ( !isset( $parents ) ) $parents = null; foreach ( $anc as $ancestor ) { $parents .= '
- ' . get_the_title($ancestor) . ' '; $parents .= '
- ' . $separator . ' '; } // Render parent pages echo $parents; // Active page echo '
- ID . '"> ' . get_the_title() . ' '; } else { // Just display active page if not parents pages echo '
- ID . '">ID . '"> ' . get_the_title() . ' '; } } else if ( is_tag() ) { // Tag page // Tag information $term_id = get_query_var('tag_id'); $taxonomy = 'post_tag'; $args = 'include=' . $term_id; $terms = get_terms( $taxonomy, $args ); $get_term_id = $terms[0]->term_id; $get_term_slug = $terms[0]->slug; $get_term_name = $terms[0]->name; // Return tag name echo '
- ' . $get_term_name . ' '; } elseif ( is_day() ) { // Day archive page // Year link echo '
- ' . get_the_time('Y') . ' Archives '; echo '
- ' . $separator . ' '; // Month link echo '
- ' . get_the_time('M') . ' Archives '; echo '
- ' . $separator . ' '; // Day display echo '
- ' . get_the_time('jS') . ' ' . get_the_time('M') . ' Archives '; } else if ( is_month() ) { // Month Archive // Year link echo '
- ' . get_the_time('Y') . ' Archives '; echo '
- ' . $separator . ' '; // Month display echo '
- ' . get_the_time('M') . ' Archives '; } else if ( is_year() ) { // Display year archive echo '
- ' . get_the_time('Y') . ' Archives '; } else if ( is_author() ) { // Author archive // Get the author information global $author; $userdata = get_userdata( $author ); // Display author name echo '
- user_nicename . '">user_nicename . '" title="' . $userdata->display_name . '">' . 'Author: ' . $userdata->display_name . ' '; } else if ( get_query_var('paged') ) { // Paginated archives echo '
- '.__('Page') . ' ' . get_query_var('paged') . ' '; } else if ( is_search() ) { // Search results page echo '
- Search results for: ' . get_search_query() . ' '; } elseif ( is_404() ) { // 404 page echo '
- ' . 'Error 404' . ' '; } echo '
将调用代码放到主题模板适当位置比如header.php中:
<?php if (function_exists('tsh_wp_custom_breadcrumbs')) tsh_wp_custom_breadcrumbs(); ?>登录后复制
配套样式:
#tsh_breadcrumbs .separator{ font-size:20px; color:#ccc; font-weight:100; } #tsh_breadcrumbs{ overflow:hidden; text-align: center; list-style:none; margin:11px 0; } #tsh_breadcrumbs li{ margin-right:14px; display:inline-block; vertical-align:middle; }登录后复制
以上就是分享一个WordPress面包屑导航代码的详细内容,更多请关注慧达安全导航其它相关文章!
免责 声明
1、本网站名称:慧达安全导航
2、本站永久网址:https//www.huida178.com/
3、本站所有资源来源于网友投稿和高价购买,所有资源仅对编程人员及源代码爱好者开放下载做参考和研究及学习,本站不提供任何技术服务!
4、本站所有资源的属示图片和信息不代表本站的立场!本站只是储蓄平台及搬运
5、下载者禁止在服务器和虚拟机下进行搭建运营,本站所有资源不支持联网运行!只允许调试,参考和研究!!!!
6、未经原版权作者许可禁止用于任何商业环境,任何人不得擅作它用,下载者不得用于违反国家法律,否则发生的一切法律后果自行承担!
7、为尊重作者版权,请在下载24小时内删除!请购买原版授权作品,支持你喜欢的作者,谢谢!
8.若资源侵犯了您的合法权益,请持 您的版权证书和相关原作品信息来信通知我们!QQ:1247526623我们会及时删除,给您带来的不便,我们深表歉意!
9、如下载链接失效、广告或者压缩包问题请联系站长处理
10、如果你也有好源码或者教程,可以发布到网站,分享有金币奖励和额外收入!
11、本站资源售价只是赞助,收取费用仅维持本站的日常运营所需
12、因源码具有可复制性,一经赞助,不得以任何形式退款。
13、本文内容由网友自发贡献和站长收集,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系1247526623@qq.com
转载请注明出处: 慧达安全导航 » 分享一个WordPress面包屑导航代码
发表评论 取消回复