Advertisement
phpface

Untitled

Apr 6th, 2023
908
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.31 KB | None | 0 0
  1. add_filter( 'streamtube/core/user/profile/menu/items', function( $menu_items ){
  2.  
  3.     $menu_items['home']['priority']     = 2;
  4.     $menu_items['profile']['priority']  = 0;
  5.  
  6.     uasort( $menu_items, function( $item1, $item2 ){
  7.         return $item1['priority'] <=> $item2['priority'];
  8.     } );
  9.  
  10.     return $menu_items;
  11. }, 10, 1 );
  12.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement