Home › Forums › Add-ons › Repeater Field › PDF Attachment as Link › Reply To: PDF Attachment as Link
Hi @hartu
I’m not sure which one is the file custom field, so forgive me if I’m wrong (please keep in mind that you need to create a new file custom field in your repeater field). If the file custom field is ‘ort’, you need to do it like this:
// Ort aus Feld laden
$ort = get_sub_field('ort');
//Here goes your Code?
if ( $ort ):
?>
<a href="<?php echo $ort['url']; ?>"><?php the_sub_field('bezeichnung'); ?></a>
<? endif;
Also, you need to set the return value of your file custom field to “File Array”. I’ve attached a screenshot for your reference.
Hope this helps 🙂
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.