Guest User

Untitled

a guest
Dec 11th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. <?php
  2. add_filter( 'woocommerce_account_menu_items', function( $items ) {
  3. if ( isset( $items['subscriptions'] ) ) {
  4. $items['subscriptions'] = 'My new menu item label';
  5. }
  6.  
  7. return $items;
  8. }, 11 );
Add Comment
Please, Sign In to add comment