ACF_Admin_Taxonomy::edit_form_after_titlepublicACF 1.0

This action will allow ACF to render metaboxes after the title.

Method of the class: ACF_Admin_Taxonomy{}

No Hooks.

Returns

null. Nothing (null).

Usage

$ACF_Admin_Taxonomy = new ACF_Admin_Taxonomy();
$ACF_Admin_Taxonomy->edit_form_after_title();

ACF_Admin_Taxonomy::edit_form_after_title() code ACF 6.8.8

public function edit_form_after_title() {

	// globals.
	global $post;

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