在当前主题的functions.php文件中新增以下代码:
function navigation($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, true, $sep) .’ ‘. get_the_title();
}
echo ‘
‘;
}
页面调用:
<?php navigation();?>