• Hi!
    How can i get a user profile link based on user id?
    Im using WPAdverts plugin, so i need to redirect visitors from user advert page to user profile.
    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Towhid

    (@cryptex_vinci)

    Hi @zonepluss

    You can check this snippet:

    <?php
    if ( class_exists( 'UM' ) ) {
    	$user_id = get_current_user_id();
    	echo um_user_profile_url( $user_id );
    }
    ?>

    Thanks

    Thread Starter zonepluss

    (@zonepluss)

    Thank you!
    This code must be in the functions.php file right?

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Get a user profile link based on user id’ is closed to new replies.