acf_admin_field_group::edit_form_after_title()publicACF 1.0

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 6.0.4

public function edit_form_after_title() {

	// globals.
	global $post;

	// render post data.
	acf_form_data(
		array(
			'screen'        => 'field_group',
			'post_id'       => $post->ID,
			'delete_fields' => 0,
			'validation'    => 0,
		)
	);

}