mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-02 12:02:25 +08:00
https://stackoverflow.com/questions/39287308/woocommerce-remove-downloads-from-menu-in-my-account-page/
5 lines
175 B
Text
5 lines
175 B
Text
function wc_my_account_menu_items( $items ) {
|
|
unset($items['downloads']);
|
|
return $items;
|
|
}
|
|
add_filter( 'woocommerce_account_menu_items', 'wc_my_account_menu_items' );
|