Advertisement
wpgenie

remove auctions options endpoint from my account

May 30th, 2018
643
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 KB | None | 0 0
  1. add_filter ( 'woocommerce_account_menu_items', 'wpgenieorg_remove_my_account_links', 90);
  2. function wpgenieorg_remove_my_account_links( $menu_links ){
  3.     unset( $menu_links['auctions-endpoint'] );
  4.     return $menu_links;
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement