Forums

How to display specific user profile information in theme (3 posts)

  1. jer
    Member
    Posted 4 years ago #

    Hi,
    I am allowing people to register to my blog with a themed register and login plugin. After they register the login script redirects them to the main page without them seeing the wp-admin dashboard. I want the user to be able to view their profile and maybe search other profiles using the user name field.

    Please let me know if there is code or a plugin that allows this to be done thank you.

    If not is there a function that does SQL SELECT code WHERE user_name = specific that allready exists?

    Thanking you in advance
    Jeremy

  2. jer
    Member
    Posted 4 years ago #

    I think I am getting it
    I found this

    $user_ids = $wpdb->get_col("SELECT ID FROM $wpdb->users ORDER BY $order"); // query users

    and I want to add a
    WHERE $wpdb->users->user_login = 'specific'

    any Ideas?

  3. jer
    Member
    Posted 4 years ago #

    I figured it out on my own by reading the posts from other users sorry for that my bad but if anyone else would like to know
    $user_ids = $wpdb->get_col("SELECT ID FROM $wpdb->users WHERE user_login = 'some_username' ORDER BY $order"); // query users

    Thank you

Topic Closed

This topic has been closed to new replies.

About this Topic