我将如何在 Wordpress 中使用卡片构建内容区域?
How would I build a content area with cards in Wordpress?
我正在自学 Wordpress,并且已经走得很远了。我还有最后一部分要构建。我不太确定如何构建它。我使用 bootstrap 作为框架,我希望客户端能够在需要时添加多张卡片。
我想我可以使用高级自定义字段。但是我没有看到可以让重复块保留在两列中的选项。
啊啊我不能post我的图片=(
基本上我需要知道如何在 wordpress 中使用两列中的卡片构建内容部分。它不是全局的。
任何帮助或指出正确的方向都会很棒!!
非常感谢!
ACF Pro 有一个转发器字段,如文档中所述:https://www.advancedcustomfields.com/resources/repeater/。你应该考虑购买 PRO 版本或只购买这个扩展 - 它会为你节省大量的开发工作时间。
这是从中提取的一些示例代码:
<?php
// check if the repeater field has rows of data
if( have_rows('repeater_field_name') ):
// loop through the rows of data
while ( have_rows('repeater_field_name') ) : the_row();
// display a sub field value
the_sub_field('sub_field_name');
endwhile;
else :
// no rows found
endif;
?>
我正在自学 Wordpress,并且已经走得很远了。我还有最后一部分要构建。我不太确定如何构建它。我使用 bootstrap 作为框架,我希望客户端能够在需要时添加多张卡片。
我想我可以使用高级自定义字段。但是我没有看到可以让重复块保留在两列中的选项。
啊啊我不能post我的图片=(
基本上我需要知道如何在 wordpress 中使用两列中的卡片构建内容部分。它不是全局的。
任何帮助或指出正确的方向都会很棒!! 非常感谢!
ACF Pro 有一个转发器字段,如文档中所述:https://www.advancedcustomfields.com/resources/repeater/。你应该考虑购买 PRO 版本或只购买这个扩展 - 它会为你节省大量的开发工作时间。
这是从中提取的一些示例代码:
<?php
// check if the repeater field has rows of data
if( have_rows('repeater_field_name') ):
// loop through the rows of data
while ( have_rows('repeater_field_name') ) : the_row();
// display a sub field value
the_sub_field('sub_field_name');
endwhile;
else :
// no rows found
endif;
?>