mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
13 lines
420 B
Text
13 lines
420 B
Text
add_filter( 'woocommerce_get_breadcrumb', 'wc_single_product_edit_prod_name_breadcrumbs', 9999, 2 );
|
|
|
|
function wc_single_product_edit_prod_name_breadcrumbs( $crumbs, $breadcrumb ) {
|
|
|
|
if ( is_product() ) {
|
|
global $product;
|
|
$index = count( $crumbs ) - 1; // product name is always last item
|
|
$value = $crumbs[$index];
|
|
$crumbs[$index][0] = $product->get_sku();
|
|
}
|
|
|
|
return $crumbs;
|
|
}
|