ACF_Admin_Internal_Post_Type_List::include_pro_featurespublicACF 1.0

Renders HTML for the ACF PRO features upgrade notice.

Метод класса: ACF_Admin_Internal_Post_Type_List{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$ACF_Admin_Internal_Post_Type_List = new ACF_Admin_Internal_Post_Type_List();
$ACF_Admin_Internal_Post_Type_List->include_pro_features();

Код ACF_Admin_Internal_Post_Type_List::include_pro_features() ACF 6.4.2

public function include_pro_features() {
	// Bail if not the edit screen
	if ( ! acf_is_screen( 'edit-' . $this->post_type ) ) {
		return;
	}

	// Bail if on PRO.
	if ( acf_is_pro() && acf_pro_is_license_active() ) {
		return;
	}

	acf_get_view( 'acf-field-group/pro-features' );
}