我有一个 ACF 字段,它是文件上传。我能够获得附件 ID。但是在我的树枝模板中,我无法输出文件大小,因为这不能通过 ACF 获得。
我发现了一个功能:
$context['filesize'] = (filesize( get_attached_file(the_attachment_id_here))/1000 );
但我真正需要它让它处于树枝循环中。
我在我的模板中尝试过:
{% for item in posts %}
{{function(filesize( get_attached_file(item.get_field('pdf').id))/1000 )}}
{% endfor %
但它返回一个错误文件大小未知函数。
任何帮助都会很棒!