ACF_Admin_Tool_Export::html
html
This function will output the metabox HTML
Method of the class: ACF_Admin_Tool_Export{}
No Hooks.
Returns
null. Nothing (null).
Usage
$ACF_Admin_Tool_Export = new ACF_Admin_Tool_Export(); $ACF_Admin_Tool_Export->html();
Changelog
| Since 5.6.3 | Introduced. |
ACF_Admin_Tool_Export::html() ACF Admin Tool Export::html code ACF 6.0.4
function html() {
// single (generate PHP)
if ( $this->is_active() ) {
$this->html_single();
// archive
} else {
$this->html_archive();
}
}