【发布时间】:2018-12-26 23:41:49
【问题描述】:
我卡住了。
下面的代码大部分都可以正常工作,除了我想要<h4>Attachments</h4>
仅在有附件时出现。现在看有没有附件。如果我在 while have-rows 转发器之后移动 <h4>Attachments</h4>,它会出现在每个附加文档中。这让我发疯。
<?php if( have_rows('attachment_repeater') ): ?>
<h4>Attachments</h4>
<?php while( have_rows('attachment_repeater') ): the_row();
$case_document = get_sub_field('case_document');
$title = $file['title'];
?>
<?php if( get_sub_field('case_document') ): ?>
<div style="border-bottom:1px solid #dfdfdf;padding:10px 0; width:100%; display:table">
<div><a href="<?php echo $case_document['url']; ?>"><?php echo $case_document['title']; ?></a></div>
</div>
<?php endif; ?>
<?php endwhile; ?>
<?php endif; ?>
关于如何解决此问题的任何想法
【问题讨论】:
标签: php wordpress advanced-custom-fields