Hi,
In my CRM, I have a template for author archive page.
An admin can visit in the frontend the archive author page of any user.
I would like to write in the page the username of the author.
It seems that there is no helper for that. Here is the doc :
Author Fields
{author_id}
β Returns the post author ID
{author_name}
β Returns the post author name
{author_bio}
β Returns the post author biographical info
{author_email}
β Returns the post author email
{author_website}
β Returns the post author website
{author_archive_url}
β Returns the post author url
{author_avatar}
β Returns the post author avatar as an image tag (text) or an image url (link)
{author_meta:meta_key}
β Returns the specified author meta value. Set the author meta key as the filter. Example. author_meta:first_name returns the authorβs first name. See here for available author meta keys.
These fields support dynamic data filters like the following:
{author_bio:20}
β Post author biographical info limited to 20 words
{author_name:link}
β Post author name rendered as a link to the author profile page
{author_email:link}
β Post author email rendered as a link
{author_website:link}
β Post author website rendered as a link
{author_avatar:200}
β Post author avatar image tag limited to the width/height of 200px
Am I missing something ?
Thank you !