0
我想在前端顯示我的字段組。如何按字段順序排序ACF Wordpress
和我目前使用此代碼:
$fields = get_field_objects();
if($fields)
{
foreach($fields as $field_name => $field)
{
echo '<div>';
echo '<h3>' . $field['label'] . '</h3>';
echo $field['value'];
echo '</div>';
}
}
還如何獲得ACF TAB的字段名?