Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我从 Themeisle 购买了一个支持 WooCommerce 的 WordPress 模板 Zerif Pro。模板 WooCommerce 页面不显示允许用户在页面之间导航的面包屑。下面是我在网上找到的例子:
我在 Woocommerce 文件夹中搜索了该函数woocommerce_breadcrumb(),但找不到相关代码。谁能给我一些关于如何在我的页面上添加它的提示?
woocommerce_breadcrumb()
您可以使用
<?php $args = array( 'delimiter' => '/', 'before' => '<span class="breadcrumb-title">' . __( 'This is where you are:', 'woothemes' ) . '</span>' ); woocommerce_breadcrumb( $args ); ?>