Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.
LLMS_Metabox_Repeater_Field::get_sub_field( $field, $index )
Get repeater sub field html output
Contents
Return Return
(string)
Source Source
File: includes/admin/post-types/meta-boxes/fields/llms.class.meta.box.repeater.php
function ( $m ) {
return ucfirst( $m[1] );
},
$field['type']
),
'-',
'_'
)
);
$field_class_name = str_replace( '{TOKEN}', $name, 'LLMS_Metabox_{TOKEN}_Field' );
$field_class = new $field_class_name( $field );
$field_class->output();
}
/**
* Outputs the Html for the given field
*
* @return void
* @since 3.11.0
* @version 3.11.0
*/
public function output() {
global $post;
parent::output();
?>
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 3.11.0 | Introduced. |