Advertisement
fauzanjeg

Example Change Account Menu Dropdown

Sep 26th, 2021
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. /* Example Change Account Menu Dropdown */
  2. function change_account_menu_dropdown( $dropdown ) {
  3.     unset( $dropdown['account'] );
  4.     $dropdown['my_channel']['text'] = 'changed text';
  5.     return $dropdown;
  6. }
  7. add_filter( 'jnews_dropdown_link', 'change_account_menu_dropdown', 99 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement