wordpress如何做一个自定义面包屑导航全站使用,下面web建站小编给大家简单介绍一下具体实现代码!
在当前主题的functions.php文件中新增以下代码:
function navigation($sep = ' > '){ echo '<div class="nav">您当前的位置: <a href="'. home_url() .'" title="首页">首页</a>'; 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 '</div>'; }
页面调用:
<?php navigation();?>
wordpress建站如何快速提交和优化您的网站(IndexNow插件)?
标签: wordpress技巧, wordpress面包屑
上面是“wordpress如何自定义实现面包屑导航”的全面内容,想了解更多关于 wordpress 内容,请继续关注web建站教程。
当前网址:https://m.ipkd.cn/webs_3784.html
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!