我需要在博客存档页面上显示一些额外的信息,但无法对其进行编码,因为其他人必须能够编辑这些信息。
我在此页面上添加了一些自定义字段,但无法在实际页面上显示它们。有什么办法可以解决这个问题?
我的代码:
<div class="save_the_date">
<?php
if( have_rows('actiedagen') ):
while ( have_rows('actiedagen') ) : the_row();
the_sub_field('actiedagen_titel');
the_sub_field('actiedagen_datum');
the_sub_field('actiedagen_locatie');
endwhile;
else :
endif;
?>
</div>
宝慕林4294392