Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* add custom link in account menu dropdown */
- add_filter( 'jnews_dropdown_link', 'add_custom_account_menu' );
- function add_custom_account_menu( $dropdown ) {
- $dropdown['my_custom'] = array(
- 'text' => 'Custom Link',
- 'url' => 'https://www.google.com/',
- );
- return $dropdown;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement