A user in an author archive will be always the author of the displayed posts.
Hence, to display the "author" of the author archive you can simply add the Post Author shortcode to the Archive's loop.
[wpv-post-author]
Since the post author is always just one, on an archive page for authors, this will always show the name of the currently viewed author.
Or the [wpv-archive-title] as well works, since this will output something like:
AUTHOR: AUTHOR_NAME
To display just the ID of the author, the last ShortCode won't work.
For that, the first ShortCode is to be used, bypassing an additional attribute:
[wpv-post-author format="meta" meta="ID"]
This will then output the Author ID, instead of the Name.
This can be inserted using the "Fields and Views" button you can find in the archives loop editor.
Basically I need to have a page for each "author" that can be "linkable". Something like "xxxxx.com/author/user1".
I have a lot of users and every of them has your own page. I think that I must use the author archive page for that right ?
In this page I want to show a view of the custom post type articles of this author.
Now I want to show also the "type usermeta" info about the author that I build. I created some type usermeta fields like description, city, nation nad so on related to the author.
But now, after the last wp-types update, I can't show this info with the shortcode [types usermeta='description' user_id="xx"][/types] ! (I'm sure that I have some content in description for the user xx)
please let me know why!
Yes we have the list of all the authors. Each author has your own page (author archive page). Into this page I want to show all the specific custom post type of the author.
We don't have a "normal" wordpress posts only custom post type posts.
I have 2 problem:
1. into the author archive page I can't have the ID of the author ( now I get this with a custom shortcode)
2. The author archive page don't show me the custom user meta field [types usermeta='description' user_id="xx"][/types] even if I specify the user ID.