LLMS_Meta_Box_Certificate::configure()
Configure the metabox settings.
Contents
Return Return
(void)
Source Source
File: includes/admin/post-types/meta-boxes/class.llms.meta.box.certificate.php
public function configure() { $this->id = 'lifterlms-certificate'; $this->title = __( 'Settings', 'lifterlms' ); $this->screens = array( 'llms_certificate', ); $this->priority = 'default'; $this->context = 'side'; $this->callback_args = array( '__back_compat_meta_box' => true, ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
6.0.0 | Renamed from "Certificate Settings" to "Settings". Moved to the side context with default priority. |
3.0.0 | Introduced. |