acf_field_gallery::render_field_settings
Create extra options for your field. This is rendered when editing a field. The value of $field['name'] can be used (like bellow) to save extra data to the $field
Method of the class: acf_field_gallery{}
No Hooks.
Returns
null. Nothing (null).
Usage
$acf_field_gallery = new acf_field_gallery(); $acf_field_gallery->render_field_settings( $field );
- $field(required)
- .
Changelog
| Since 3.6 | Introduced. |
acf_field_gallery::render_field_settings() acf field gallery::render field settings code ACF 6.0.4
function render_field_settings( $field ) {
acf_render_field_setting(
$field,
array(
'label' => __( 'Return Format', 'acf' ),
'instructions' => '',
'type' => 'radio',
'name' => 'return_format',
'layout' => 'horizontal',
'choices' => array(
'array' => __( 'Image Array', 'acf' ),
'url' => __( 'Image URL', 'acf' ),
'id' => __( 'Image ID', 'acf' ),
),
)
);
acf_render_field_setting(
$field,
array(
'label' => __( 'Library', 'acf' ),
'instructions' => __( 'Limit the media library choice', 'acf' ),
'type' => 'radio',
'name' => 'library',
'layout' => 'horizontal',
'choices' => array(
'all' => __( 'All', 'acf' ),
'uploadedTo' => __( 'Uploaded to post', 'acf' ),
),
)
);
}