WooCommerc面包屑显示404

时间:2019-07-18 16:25:55

标签: php wordpress woocommerce

我遇到一个奇怪的问题。当我在WooCommerce中搜索内容时,将打开搜索页面get。当我知道检查面包屑时,我在第二个位置输入了404文本:

enter image description here

这太奇怪了。知道有什么问题吗?这是我正在使用的代码:

if ( ! empty( $breadcrumb ) ) {

    echo $wrap_before;

    foreach ( $breadcrumb as $key => $crumb ) {

        echo $before;

        if ( ! empty( $crumb[1] ) && count( $breadcrumb ) !== $key + 1 ) {
            if ( $key === 0 ) {
                echo '<a href="' . esc_url( $crumb[1] ) . '">' . esc_html( $crumb[0] ) . '</a>';
            } else {
                echo '<a href="' . esc_url( $crumb[1] ) . '">' . esc_html( $crumb[0] ) . '</a>';
            }
        } else {
            echo esc_html( $crumb[0] );
        }

        echo $after;

        if ( sizeof( $breadcrumb ) !== $key + 1 ) {
            echo $delimiter;
        }
    }

    echo $wrap_after;

}

也许我需要检查我是否在搜索中,以防止出现第二个参数,但不确定问题出在哪里。

0 个答案:

没有答案