我要添加自定义字段:
<?php if( get_field('custom_filed') ): ?>
<h4>Some text: <?php the_field('custom_field');?></h4>
<?php endif; ?>
到
$html_format = '
<div class="%7$s">
<div class="cruises-layout">
<div class="image-wrapper">
%1$s
%3$s
%9$s
</div>
<div class="content-wrapper">
<div class="content">
%2$s
%4$s
%8$s
%5$s
%6$s
</div>
</div>
</div>
</div>';
$html_options = array(
'html_format' => $html_format,
'open_row' => '<div class="row">',
'close_row' => '</div>',
);
我找不到方法,因为这个$ html_format不支持php,我也找不到那些设置为“ printf_format”的文件所在的位置,所以我可以对自定义字段进行同样的操作。
感谢帮助,
A