LLMS_Meta_Box_Achievement::configure()
Configure the metabox settings.
Contents
Return Return
(void)
Source Source
File: includes/admin/post-types/meta-boxes/class.llms.meta.box.achievement.php
public function configure() {
$this->id = 'lifterlms-achievement';
$this->title = __( 'Achievement Settings', 'lifterlms' );
$this->screens = array(
'llms_achievement',
'llms_my_achievement',
);
$this->priority = 'high';
}
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 6.0.0 | Added support for the llms_my_achievement post type. |
| 3.0.0 | Introduced. |