ACF_Admin_Tool_Export::html()publicACF 5.6.3

html

This function will output the metabox HTML

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

Хуков нет.

Возвращает

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

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

$ACF_Admin_Tool_Export = new ACF_Admin_Tool_Export();
$ACF_Admin_Tool_Export->html();

Список изменений

С версии 5.6.3 Введена.

Код ACF_Admin_Tool_Export::html() ACF 6.0.4

function html() {

	// single (generate PHP)
	if ( $this->is_active() ) {

		$this->html_single();

		// archive
	} else {

		$this->html_archive();

	}

}