我在Wordpress网站上使用高级自定义字段插件。我正在使用Repeater字段类型来附加多个文件。
我的中继器字段类型称为:电子设备
子字段名称:electronics_files
这是我到目前为止所做的:
<?php
// check if the repeater field has rows of data
if( have_rows('electronics ') ):
// loop through the rows of data
while ( have_rows('electronics ') ) : the_row();
// display a sub field value
the_sub_field('electronics_files');
endwhile;
else :
// no rows found
endif;
?>
我将electronics_files的返回值作为文件URL,因此我可以将其包装在要下载的标签内。
现在它将所有文件URL作为一个长字符串返回。我该如何做,所以它首先检查我是否有数据表,然后抓住第一个将它包裹在一个标签周围然后循环,直到没有更多的electronics_files。
我可能会有这样的事情吗?
if( $file ) {
$url = wp_get_attachment_url( $file );
?><a href="<?php echo $url; ?>" >Download File</a><?php
}
基本上我只是希望它显示我附加的文件作为可以下载的链接。
答案 0 :(得分:0)
听起来只需要改变这个......
the_sub_field('electronics_files');
......对此:
echo '<a href="' . get_sub_field('electronics_files') . '">Download File</a>';
换句话说,只需将子字段格式化为链接即可。