Thay đổi WooCommerce Breadcrumb-sonweb
Nếu bạn tự làm theme cho woocommere , bạn sẽ gặp phải 1 số vấn đề : như muốn breadcrumbs hiển thị theo ý bạn chẳng hạn
bạn chỉ cần add vài dòng code sau :
function my_woocommerce_breadcrumbs() { return array( 'delimiter' => ' / ', 'wrap_before' => ' <nav class="woocommerce-breadcrumb" itemprop="breadcrumb">', 'wrap_after' => '</nav>', 'before' => '', 'after' => '', 'home' => _x( 'Home', 'breadcrumb', 'woocommerce' ), ); } add_filter( 'woocommerce_breadcrumb_defaults', 'my_woocommerce_breadcrumbs' );
Để hiện thị WooCommerce Breadcrumb bạn chỉ cần dùng hàm
<!--?php woocommerce_breadcrumb(); ?-->
Bạn có thể tham khảo chi tiết tại đây http://wordimpress.com/how-to-modify-breadcrumb-appearance-in-woocommerce/
hoặc http://docs.woothemes.com/document/customise-the-woocommerce-breadcrumb/