Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_filter( 'jnews_dropdown_link', 'change_account_url', 20 );
- function change_account_url( $dropdown ) {
- if ( is_user_logged_in() && array_key_exists( 'account', $dropdown ) ) {
- $dropdown['account']['url'] = esc_url( jnews_home_url_multilang( '/my-account-custom' ) );
- }
- return $dropdown;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement