ACF_Admin_Tool_Export::html() public ACF 5.6.3
This function will output the metabox HTML
{} Это метод класса: ACF_Admin_Tool_Export{}
Хуков нет.
Возвращает
n/a.
Использование
$ACF_Admin_Tool_Export = new ACF_Admin_Tool_Export(); $ACF_Admin_Tool_Export->html();
- (n/a) (обязательный)
Список изменений
С версии 5.6.3 | Введена. |
Код ACF_Admin_Tool_Export::html() ACF Admin Tool Export::html ACF 5.9.1
function html() {
// single (generate PHP)
if( $this->is_active() ) {
$this->html_single();
// archive
} else {
$this->html_archive();
}
}