WP Taxonomy FREE

Docs Modules Enhanced UI WP Taxonomy

#WP Taxonomy

The Taxonomy views have been enhanced for a more consistent administration experience, using CSS/JS only. Taxonomies now look & feel like post types.

Note that Field Groups can now use also use the “High (After title)” and “Side” position.

ACF Extended
Howdy, ACF Extended
Edit Term
Name

The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.

The description is not prominent by default; however, some themes may show it.

Edit Term
ACF Extended
Howdy, ACF Extended
TermsAdd New
NameDescriptionSlugCount
Term 1term-12
Term 2term-20
Term 3term-33
Term 4term-43
NameDescriptionSlugCount

#Disable the module

#Disable Term UI only:

add_action('acf/init', 'my_acfe_modules');
function my_acfe_modules(){

    // Disable Term UI
    acf_update_setting('acfe/modules/term_ui', false);
    
}