acf_admin_field_group::edit_form_after_title
This action will allow ACF to render metaboxes after the title.
Метод класса: acf_admin_field_group{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$acf_admin_field_group = new acf_admin_field_group(); $acf_admin_field_group->edit_form_after_title();
Код acf_admin_field_group::edit_form_after_title() acf admin field group::edit form after title ACF 6.4.2
public function edit_form_after_title() {
global $post;
// Render post data.
acf_form_data(
array(
'screen' => 'field_group',
'post_id' => $post->ID,
'delete_fields' => 0,
'validation' => 0,
)
);
}