Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Example Add New Menu in Account Menu and Change the position */
- function jeg_nav_account_menu( $dropdown ) {
- // var_dump($dropdown); /* For Check the List Menu */
- $logout = $dropdown['logout']; /* Save logout menu before remove it */
- unset( $dropdown['logout'] ); /* Remove Logout Menu */
- $dropdown['new_menu'] = array(
- 'text' => 'New Menu',
- 'url' => 'http://jnews.io',
- );
- $dropdown['logout'] = $logout; /* Add Again Logout Menu After Add New Menu */
- return $dropdown;
- }
- add_filter( 'jnews_dropdown_link', 'jeg_nav_account_menu', 99 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement