gpt4 book ai didi

php - 两列中继器字段高级自定义字段

转载 作者:行者123 更新时间:2023-11-27 23:59:53 25 4
gpt4 key购买 nike

我是 ACF 新手,想使用转发器字段创建两列行。它按照我想要的方式运行(两个偶数,减半的列)。我希望每一列的起始高度与另一列相同,因此我设置了高度。但我想确保我使用的是最佳实践……我是如何按照您建议的方式编写这篇文章的?我觉得可能有更好的方法。

提前谢谢你。

PHP

<div class="bg-white">
<div class="dib mw9 center">

<?php

if( have_rows('faq') ):
while ( have_rows('faq') ) : the_row(); ?>

<div class="parent">
<h4><?php the_sub_field('question'); ?></h4>
<p><?php the_sub_field('question_answer'); ?></p>
</div>

<?php endwhile;
else :
endif;
?>

</div>
</div>

CSS

.parent {
display: inline-block;
height: 240px;
width: 50%;
float: left;
padding: 48px 24px;
}

最佳答案

如果您能够向包装 div 添加一个额外的类 (class="dib …"),我们将其称为“.parent-wrapper”,您可以简单地使用以下代码:

.parent-wrapper {
display: flex;
flex-wrap: wrap;
}

.parent {
flex: 50%;
padding: 48px 24px;
}

不需要高度,因为 flex 会处理它。在这里,您不受内容长度的影响。因此,即使是很长的答案也会被正确格式化。

希望对您有所帮助:)

关于php - 两列中继器字段高级自定义字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56048118/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com