第一步:在functions.php中添加如下代码 // 面包屑导航 function get_breadcrumbs() { global $wp_query; if ( !is_home() ){ // Start the UL echo '<ul id="crumbs">'; // Add the Home link echo '<li><a href="'. get_settings('home') .'">'. get_…
前面我们学了一行代码搞定WordPress面包屑导航breadcrumb,现在wordpress文档中有一个简单实现的方法,适用于page页面,有二级分类的情况(Simple breadcrumb trail for pages, two levels deep.),随ytkah一起看看代码 echo '<div class="breadcrumb">'; // If there is a parent, display the link. $parent_title =…