删除:
the_sub_field(\'space_avail\' );
显示的是字符串值。
acf documentation repeater fields
// 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\');
因此,最终代码应为:
<?php
$total = 0;
while(the_repeater_field(\'repeater\' )):
$total += intval( get_sub_field(\'space_avail\' ) );
endwhile;
echo $total;
?>