MailPoet\EmailEditor\Engine

Email_Editor::get_post_types()privateWC 1.0

Returns the email post types.

Method of the class: Email_Editor{}

Hooks from the method

Return

Array.

Usage

// private - for code of main (parent) class only
$result = $this->get_post_types(): array;

Email_Editor::get_post_types() code WC 9.8.1

private function get_post_types(): array {
	$post_types = array();
	return apply_filters( 'mailpoet_email_editor_post_types', $post_types );
}