LLMS_Admin_Metabox::register()

Register the Metabox using WP Functions.


Description Description

This is called automatically by constructor.

Utilizes class properties for registration.


Top ↑

Return Return

(void)


Top ↑

Source Source

File: includes/abstracts/abstract.llms.admin.metabox.php

388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
            },
            $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;

Top ↑

Changelog Changelog

Changelog
Version Description
3.37.19 Early bail if the global $post is empty.
3.13.0 Unknown.
3.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.