ACF_Admin_Taxonomy::mb_basic_settings
Renders HTML for the 'acf-taxonomy-fields' metabox.
Method of the class: ACF_Admin_Taxonomy{}
No Hooks.
Returns
null. Nothing (null).
Usage
$ACF_Admin_Taxonomy = new ACF_Admin_Taxonomy(); $ACF_Admin_Taxonomy->mb_basic_settings();
Changelog
| Since 5.0.0 | Introduced. |
ACF_Admin_Taxonomy::mb_basic_settings() ACF Admin Taxonomy::mb basic settings code ACF 6.8.8
public function mb_basic_settings() {
global $acf_taxonomy;
if ( ! acf_is_internal_post_type_key( $acf_taxonomy['key'], 'acf-taxonomy' ) ) {
$acf_taxonomy['key'] = uniqid( 'taxonomy_' );
}
acf_get_view( $this->post_type . '/basic-settings' );
}