wordpress面包屑导航

面包屑导航

<?php
if(is_category()){
    single_Cat_title()
}elseif(is_search()){
    //$s为搜索的关键词
    echo $s
}elseif(is_single()){
    $cat = get_the_category();
    $cat = $cat[0]
    //get_category_link()获取分类链接 
    echo '<a href="'.get_category_link($cat).'">'.$cat->name.'</a> > 文章内容';
}elseif(is_page()){
    the_title();
}elseif(is_404()){
    echo "404找不到";
}
posted @ 2021-03-09 09:37  Lcxuan27  阅读(45)  评论(0)    收藏  举报