Archived topic
hero element- how to add photo author credit
5 replies · Started by Santa on April 14, 2019
Hi!
Have made an element for blog posts to show featured photo and title of the post. How to add author credit for posts?
Can I add it as a tag, as for every post the author of photos will be different?
Thanks!
Hi there,
does this example help:
https://docs.generatepress.com/article/page-hero-examples/#example-2
Hello!
Maybe it is possible to add just plain text under the h1, or text with link to image author somehow? For example, ''Photo: link to author url''
So you could use Custom Fields and the {{custom_field.name}} template tag to display it in the header. Eg.
Add 2 Custom Fields to the post:
author_name
author_url
Then you could add this to the page header:
<a href="{{custom_field.author_url}}">Photo: {{custom_field.author_name}}</a>
Thank you! Just what I wanted to archieve.
Glad to be of help.