LLMS_Admin_Post_Types::__construct()
Constructor
Description Description
Adds functions to actions and sets filter on post_updated_messages.
Return Return
(void)
Source Source
File: includes/admin/class.llms.admin.post-types.php
public function __construct() { add_action( 'use_block_editor_for_post', array( $this, 'use_block_editor_for_post' ), 20, 2 ); add_action( 'admin_init', array( $this, 'include_post_type_metabox_class' ) ); add_filter( 'post_updated_messages', array( $this, 'llms_post_updated_messages' ) ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
6.0.0 | Introduced. |