面包屑导航 一是方便读者所在的位置,更重要的是对SEO非常友好,利于蜘蛛知道你网站的目录结构,所以给我们的wordpress主题添加面包屑导航是必须的。
/**
* http://www.511yj.com/wordpress-add-breadcrumb.html
* 面包屑导航,直接输出(echo)
* Breadcrumb Trail
* @param string $sep 导航对象分隔符,默认为' > '
*/
function bread_nav($sep = ' > '){
echo '
首页">首页
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,$sep) .'正文内容 '. get_the_title();
}
echo '
}
PHP bread_nav();?>
原文链接:https://www.f2er.com/wordpress/422830.html