【Snow Monkey のバージョン】v10.2.0
【WooCommerce のバージョン】v4.0.1
===
マイアカウントのダッシュボードのみホーム > マイアカウント
となりますが、
その他のメニュー表示時はホーム > マイアカウント > ダウンロード
などの対応した構造にします。
add_filter(
'snow_monkey_breadcrumbs',
function( $items ) {
if ( class_exists( '\woocommerce' ) && is_account_page() ) {
add_filter( 'the_title', 'wc_page_endpoint_title' );
$endpoint = WC()->query->get_current_endpoint();
if ( ! empty( $endpoint ) && 'dashboard' !== $endpoint ) {
$items[] = [
'link' => esc_url( wc_get_account_endpoint_url( $endpoint ) ),
'title' => get_the_title(),
];
}
}
return $items;
}
);