ACF_Admin_Internal_Post_Type_List::include_pro_features
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 Admin Internal Post Type List::include pro features ACF 6.8.8
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' );
}