Advertisement
arie_cristianD

add custom link in account menu dropdown

Jan 21st, 2024
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. /* add custom link in account menu dropdown */
  2.  
  3. add_filter( 'jnews_dropdown_link', 'add_custom_account_menu' );
  4.  
  5. function add_custom_account_menu( $dropdown ) {
  6.     $dropdown['my_custom'] = array(
  7.         'text' => 'Custom Link',
  8.         'url'  => 'https://www.google.com/',
  9.     );
  10.     return $dropdown;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement