Get question author username

Solved6.85K views
1

How can I get the username of the question author? I want to add a shortcode at the top of a question and display some question author related info there…

0

Try this:

$question = get_post($question_id);
get_the_author_meta( 'user_login', $question->post_author );

Read more info here: get_the_author_meta

But question_id is a undefined var.

A just used global $question_id 🙂

You are viewing 1 out of 2 answers, click here to view all answers.