WordPress - bootstap父母和子类别面包屑

时间:2017-01-05 17:35:40

标签: php html wordpress

我有一个php函数来显示面包屑,但它显示错误的顺序

强文示例

  

主页/儿童/家长/职位

什么时候应该

  

主页/家长/儿童/职位

任何人都明白为什么?

功能

function bavota_breadcrumbs() {
    if(!is_home()) {
        echo '<nav class="breadcrumb">';
        echo '<a href="'.home_url('/').'">'.get_bloginfo('name').'</a><span class="divider">/</span>';
        if (is_category() || is_single()) {
            the_category(' <span class="divider">/</span> ');
            if (is_single()) {
                echo ' <span class="divider">/</span> ';
                the_title();
            }
        } elseif (is_page()) {
            echo the_title();
        }
        echo '</nav>';
    }
}

1 个答案:

答案 0 :(得分:1)

请试试下面的代码。不要使用the_category显示分配给它的所有类别。下面的功能只显示它的父类别。

function bavota_breadcrumbs() {
    if(!is_home()) {
        echo '<nav class="breadcrumb">';
        echo '<a href="'.home_url('/').'">'.get_bloginfo('name').'</a><span class="divider">/</span>';
        if (is_category() || is_single()) {
            //the_category(' <span class="divider">/</span> ');
            global $wp_query;
            $object = $wp_query->get_queried_object();

            // Get parents of current category
            $parent_id  = $object->category_parent;
            $cat_breadcrumbs = '';
            while ($parent_id) {
                $category   = get_category($parent_id);
                echo '<a href="' . get_category_link($category->cat_ID) . '">' . $category->cat_name . '</a>';
                $parent_id  = $category->category_parent;
                echo ' <span class="divider">/</span> ';
            }
            echo '<span>'.$object->cat_name.'</span>';

            if (is_single()) {
                echo ' <span class="divider">/</span> ';
                the_title();
            }
        } elseif (is_page()) {
            echo the_title();
        }
        echo '</nav>';
    }
}

请参阅the_category()函数here

此代码经过测试且运作良好。