In WordPress I need to fetch name of author who created post using author_id. How can I find author_name ?
author_id
author_name
You can use get_the_author_meta(), to get author data.
get_the_author_meta()
echo get_the_author_meta('display_name', $author_id);
Hope this helps!