WordPress: get author info / user details from post id
Some times we needed to pull out the author data from a post id. It is very easy do it in wordpress. It can be accomplished by the_author_meta() function or get_the_author_meta() function. You will need call this function in your theme or plugin, through a hook. the_author_meta() –> Outputs the data, just like echo get_the_author_meta() -> holds the […]