我正在尝试在 Wordpress 中使用 ACF 高级自定义字段创建一个 TO DO 列表。
我想要实现的是一个短代码,它将显示包含在带有 H3 标题的 Div 标签中的 TO DO 中继器。
但如果子字段为空,则不应该显示任何内容,甚至 H3 标题。
我做到了这一点:
add_shortcode( 'TO-DO-LIST', 'my-to-do-list');
function my-to-do-list($atts){
if(!function_exists('get_field'))
return;
ob_start();
// check if the repeater field has rows of data
if( have_rows('acf_to_do_repeater_group') ):
echo '<div id="to-do-list-wrapper">';
echo '<h3>TO DO:</h3>';
echo '<div class="to-do-content-wrapper">';
echo '<ul class="to-do-list-wrap">';
?>
<?php
// loop through the rows of data
while ( have_rows('acf_to_do_repeater_group') ) : the_row();
// display a sub field value
$content = get_sub_field('to-do-repeater-subfield');
echo '<li>' . $content . '</li>';
endwhile;
echo '</ul></div></div>';
endif;
$output = ob_get_clean();
return $output;
}
它适用于获取值,所以如果行有输入,一切都会正确显示,但是当行为空时,我似乎无法弄清楚如何隐藏整个事情。
目前即使行为空,它仍然显示列表。
我在这里做错了什么?