Advertisement
Zoker

Untitled

Dec 8th, 2021
1,021
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. <?php
  2.  
  3. function remove_menu_items( $menu_items ) {
  4.     foreach($menu_items as $menu_item => $value) {
  5.          if($value == 'Invoices') {
  6.              unset($menu_items[$menu_item ]);
  7.          }
  8.     }
  9. }
  10. add_filter( 'booknetic_menu_items', 'remove_menu_items', 30, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement