LLMS_Admin_Post_Types::__construct()

Constructor


Description Description

Adds functions to actions and sets filter on post_updated_messages.


Top ↑

Return Return

(void)


Top ↑

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' ) );

	}

Top ↑

Changelog Changelog

Changelog
Version Description
6.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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