Woocommerce包含多个类别的面包屑

时间:2014-11-28 11:09:48

标签: php wordpress woocommerce breadcrumbs

我在wordpress有电子商务网站。里面有很多产品&许多产品属于600多个类别。电源银行属于汽车,IT,媒体等。我的问题是当我去那里的产品细节时,它默认只选择一个类别,无论是否通过IT类别在最后它显示我这样的汽车Home / Shop / industry / Automobile / 600 mah Power Bank。但我通过IT去了这个产品,所以它应该像我这样的Home / Shop / industry / IT / 600 mah Power Bank。 如何从上一页开始我的路径?

4 个答案:

答案 0 :(得分:1)

如果您正在使用Woocommerce,您可以直接使用以下内容,如果不是,则需要进行调整,但您明白了这一点:

if (get_post_type() == 'product' && is_single() && ! is_attachment()) {
    echo $prepend;

    if ($terms = get_the_terms($post->ID, 'product_cat')) {
        $referer = wp_get_referer();
        foreach ($terms as $term) {
            $referer_slug = (strpos($referer, $term->slug));

            if ($referer_slug == true) {
                $category_name = $term->name;
                $ancestors = get_ancestors($term->term_id, 'product_cat');
                $ancestors = array_reverse($ancestors);

                foreach ($ancestors as $ancestor) {
                    $ancestor = get_term($ancestor, 'product_cat');

                    if (! is_wp_error($ancestor) && $ancestor) {
                        echo $before . '<a href="' . get_term_link($ancestor->slug, 'product_cat') . '">' . $ancestor->name . '</a>' . $after . $delimiter;
                    }
                }
                echo $before . '<a href="' . get_term_link($term->slug, 'product_cat') . '">' . $category_name . '</a>' . $after . $delimiter;
            }
        }
    }

    echo $before . get_the_title() . $after;
}

此处的大部分工作由wp_get_referer完成,该{{1}}获取您的访问者导航到的产品的引荐网址。其余代码检查URL中是否包含有效类别,并在痕迹中使用它。

有关详细信息,请参阅此处的Jonathon Js帖子http://www.cryoutcreations.eu/forums/t/wrong-breadcrumbs-displayed

答案 1 :(得分:0)

我的解决方案是:

if(!empty($ breadcrumb)){

echo $wrap_before;

if (is_single() && get_post_type() == 'product') {
    $breadcrumb_diff = [];
    $breadcrumb_diff[] = $breadcrumb[0];
    if ($terms = get_the_terms($post->ID, 'product_cat')) {
        $referer = wp_get_referer();
        $site_url = site_url();
        $referer = str_replace($site_url . '/zoomagazin/', '', $referer);
        $referer_array = explode('/', $referer);
        foreach ($referer_array as $term_slug) {
            $get_term_by_slug = get_term_by('slug', $term_slug, 'product_cat');
            $breadcrumb_diff[] = [$get_term_by_slug->name, get_term_link($term_slug, 'product_cat')];
        }
        $breadcrumb_diff[]= $breadcrumb[count($breadcrumb) - 1];

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

            echo $before;

            if (!empty($crumb[1]) && sizeof($breadcrumb_diff) !== $key + 1) {
                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;
            }

        }
    }
} else {


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

        echo $before;

        if (!empty($crumb[1]) && sizeof($breadcrumb) !== $key + 1) {
            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;

}

答案 2 :(得分:0)

对于在较新版本的WooCommerce上仍然遇到此问题的任何人的最新答案,此解决方案在WooCommerce 3.5.4上对我有效。

此代码应放在以下文件路径(即子主题)中 /wp-content/themes/your-child-theme/woocommerce/global/breadcrumb.php

它将覆盖默认的WooCommerce面包屑代码。

http://pastebin.com/raw/bemM8ZNF

/**
 * Shop breadcrumb
 *
 * This template can be overridden by copying it to yourtheme/woocommerce/global/breadcrumb.php.
 *
 * HOWEVER, on occasion WooCommerce will need to update template files and you
 * (the theme developer) will need to copy the new files to your theme to
 * maintain compatibility. We try to do this as little as possible, but it does
 * happen. When this occurs the version of the template file will be bumped and
 * the readme will list any important changes.
 *
 * @see         https://docs.woocommerce.com/document/template-structure/
 * @author      WooThemes
 * @package     WooCommerce/Templates
 * @version     2.3.0
 * @see         woocommerce_breadcrumb()

if ( ! defined( 'ABSPATH' ) ) {
    exit;
}

if ( $breadcrumb ) {

    echo $wrap_before;

    if ( is_single() && get_post_type() == 'product' ) {

        echo $prepend;

        if ( $terms = get_the_terms( $post->ID, 'product_cat' ) ) {

            $referer = wp_get_referer();

            $printed = array();

            foreach( $terms as $term){

                if(in_array($term->id, $printed)) continue;

                $referer_slug = (strpos($referer, '/'.$term->slug.'/'));

                if(!$referer_slug==false){

                    $printed[] = $term->id;

                    $category_name = $term->name;
                    $ancestors = get_ancestors( $term->term_id, 'product_cat' );
                    $ancestors = array_reverse( $ancestors );

                    foreach ( $ancestors as $ancestor ) {
                        $ancestor = get_term( $ancestor, 'product_cat' );

                        if ( ! is_wp_error( $ancestor ) && $ancestor )
                            echo $before . '<a href="' . get_term_link( $ancestor->slug, 'product_cat' ) . '">' . $ancestor->name . '</a>' . $after . $delimiter;
                    }

                    echo $before . '<a href="' . get_term_link( $term->slug, 'product_cat' ) . '">' . $category_name . '</a>' . $after . $delimiter;
                }
            }

        }

        echo $before . get_the_title() . $after;

    } else {

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

            echo $before;

            if ( ! empty( $crumb[1] ) && sizeof( $breadcrumb ) !== $key + 1 ) {
                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;

}

C / O:Joris Witteman

答案 3 :(得分:0)

我对代码做了一些修改,以解决一个主要类别和一个具有无限父项的被推荐类别。

我使用面包屑过滤器,因为它非常干净,直接在单个产品模板中使用,但是如果您在其他地方需要它,则可以使用单个条件。

function breadcumbs_referred_or_primary ($main, $terms)
{
  // Our primary term is 520 (hardcoded)

  $referer = wp_get_referer();
  $referredTerm = -1;
  $referredTermIndex = -1;
  $primaryTermId = 520; // hardcoded
  $primaryTermIndex = -1;

  foreach($terms as $key => $term) {
    if ($referredTerm != -1) break; // we found it in a previous iteration!

    $ancestors = get_ancestors( $term->term_id, 'product_cat');
    array_unshift($ancestors, $term->term_id);
    if ($primaryTermIndex == -1 && in_array($primaryTermId, $ancestors)) $primaryTermIndex = $key;

    foreach ($ancestors as $ancestor) {
      if($referredTerm != -1) break 2; // we found it in a previous iteration!
      $ancestor = get_term( $ancestor, 'product_cat' );
      $referer_slug = (strpos($referer, '/'.$ancestor->slug.'/'));

      if (!$referer_slug==false) { // it's found in the current level
        $referredTerm = $term->term_id;
        $referredTermIndex = $key;
      }
    }
  }

  // we return either the browsed terms or the primary term
  if ($referredTermIndex != -1) {
    return $terms[$referredTermIndex];
  } else {
    return $terms[$primaryTermIndex];
  }
}

add_filter('woocommerce_breadcrumb_main_term', 'breadcumbs_referred_or_primary', 10, 2);