I’m amazed to see that there is so much genius in theses forums that are ready to infantilized you with their superiority behavior.
So you really think that is faster to create an account wrote a post with technological questions about something your not sure than to query Google!
For those who really want to help with their knowledge and are in this forum to contribute I really need some help.
I looked at others threads, I got through the custom and meta functions references and I don’t know how to do it.
I want to display the file name as a link in other way, the links.
I use the Custom Field Template plugin with only one type of field configured like that:
[Document 1]
type = file
[Document 2]
type = file
[Document 3]
type = file
<?php
$document_1 = get_post_meta($post->ID, 'Document 1', true);
$document_2 = get_post_meta($post_id, 'Document 2', true);
?>
<li><?= wp_get_attachment_link("document_1") ?></li>
<li><?= $document_2 ?></li>
<p>Meta information for this post:</p>
<?php the_meta(); ?>
The Meta return me Document 1 with the id 139
The