LLMS_Admin_Metabox::register()
Register the Metabox using WP Functions This is called automatically by constructor Utilizes class properties for registration
Description Description
Return Return
(void)
Source Source
File: includes/abstracts/abstract.llms.admin.metabox.php
public function register() { global $post; $this->post = $post; if ( current_user_can( $this->capability, $this->post->ID ) ) { add_meta_box( $this->id, $this->title, array( $this, 'output' ), $this->get_screens(), $this->context, $this->priority ); } }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |
User Contributed Notes User Contributed Notes
Permalink: