Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Example Change Account Menu Dropdown */
- function change_account_menu_dropdown( $dropdown ) {
- unset( $dropdown['account'] );
- $dropdown['my_channel']['text'] = 'changed text';
- return $dropdown;
- }
- add_filter( 'jnews_dropdown_link', 'change_account_menu_dropdown', 99 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement