我正在使用Classima分类主题, 该主题不支持前端中的文件字段类型。 但是我需要上传“文件”字段,并需要显示以供下载。
所以我需要php代码来做两件事-一件用于在我的添加帖子表单中插入, 另一个显示在详细(公共)帖子中的代码。
我只了解html和CSS。
因此,我安装了ACF插件并为文件创建了一个分组字段。 我认为剩下要做的仅两件事。
您能建议我下一步如何在form.php中显示acf输入文件字段
ACF文件字段组编号-1862
并且我想在此以下代码下详细显示此文件(公共)。
<?php if ( $has_meta ): ?>
<ul class="single-listing-meta">
<?php if ( $listing->can_show_date() ): ?>
<li><i class="fa fa-clock-o" aria-hidden="true"></i><?php echo esc_html( $date );?></li>
<?php endif; ?>
<li><i class="fa fa-map-marker" aria-hidden="true"></i><?php $listing->the_locations( true, false, false );?></li>
<li><?php if (Functions::current_user_can('edit_' . rtcl()->post_type)): ?>
<a href="<?php echo esc_url( Link::get_listing_edit_page_link( $listing_post->ID ) ); ?>" data-id="<?php echo esc_attr( $listing_post->ID ); ?>"><?php esc_html_e( 'Edit Tender', 'classima' ); ?></a>
<?php endif; ?></li>
</ul>
<?php endif; ?>