Skip to content

Instantly share code, notes, and snippets.

@dustinleer
Created May 25, 2022 20:53
Embed
What would you like to do?
Reorders WooCommerce menu links
<?php
/**
* Reorder my-account menu
*
* @param array $menu_links Array containing menu items
* @return array Filtered links
*/
function ip_reorder_my_account_menu( $menu_links ){
$logout_link = $menu_links['customer-logout'];
unset( $menu_links['customer-logout'] );
$menu_links['customer-logout'] = $logout_link;
return $menu_links;
}
add_filter ( 'woocommerce_account_menu_items', 'ip_reorder_my_account_menu', 10, 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment