Advertisement
arie_cristianD

change my account page with custom link

Feb 22nd, 2024
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. add_filter( 'jnews_dropdown_link', 'change_account_url', 20 );
  2.  
  3. function change_account_url( $dropdown ) {
  4.     if ( is_user_logged_in() && array_key_exists( 'account', $dropdown ) ) {
  5.         $dropdown['account']['url'] = esc_url( jnews_home_url_multilang( '/my-account-custom' ) );
  6.     }
  7.     return $dropdown;
  8. }
  9.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement