wordpress添加面包屑导航
wordpress添加面包屑导航
编辑主题,在function.php文件里加上以下内容:
/*BREADCRUMB*/ function the_breadcrumb() { if (!is_home()) { echo '<a href="'; echo get_option('home'); echo '">'; echo "首页"; echo "</a> > "; if (is_category() || is_single()) { single_cat_title(); if (is_single()) { the_category(', '); echo " > "; echo "正文"; } } elseif (is_page()) { echo the_title(); } elseif (is_tag()) { echo '标签为 "'; single_tag_title(); echo '"'; } elseif (is_day()) {echo "发表于 "; the_time(' Y-m-j');} elseif (is_month()) {echo "发表于 "; the_time(' Y-m');} elseif (is_year()) {echo "发表于 "; the_time(' Y');} elseif (is_author()) {echo "作者归档";} elseif (isset($_GET['paged']) && !empty($_GET['paged'])) {echo "本站归档";} elseif (is_search()) {echo "搜索结果如下";} } }
调用面包屑导航函数:<?php the_breadcrumb(); ?>