在单个产品页面上显示WooCommerce面包屑

时间:2016-05-02 11:04:58

标签: wordpress woocommerce wordpress-thesis-theme

我从Themeisle购买了一个支持WooCommerce的WordPress模板Zerif Pro。模板WooCommerce页面不显示允许用户在页面之间导航的面包屑。以下是我在网上找到的例子: enter image description here

我在Woocommerce文件夹中搜索了函数woocommerce_breadcrumb(),但找不到相关代码。任何人都可以给我一些关于如何在我的页面上添加它的提示吗?

1 个答案:

答案 0 :(得分:1)

您可以使用

 <?php $args = array(
        'delimiter' => '/',
        'before' => '<span class="breadcrumb-title">' . __( 'This is where you are:', 'woothemes' ) . '</span>'
    );
    woocommerce_breadcrumb( $args );
 ?>