LLMS_Admin_Metabox::register()
Register the Metabox using WP Functions.
Description Description
This is called automatically by constructor.
Utilizes class properties for registration.
Return Return
(void)
Source Source
File: includes/abstracts/abstract.llms.admin.metabox.php
},
$field['type']
),
'-',
'_'
)
);
$field_class_name = str_replace( '{TOKEN}', $name, 'LLMS_Metabox_{TOKEN}_Field' );
$field_class = new $field_class_name( $field );
ob_start();
$field_class->Output();
$field_html = ob_get_clean();
unset( $field_class );
return $field_html;
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 3.37.19 | Early bail if the global $post is empty. |
| 3.13.0 | Unknown. |
| 3.0.0 | Introduced. |