Taxonomy List

ACF Extended adds a new location on the admin taxonomy list screen. Field groups can be displayed after the title, after the list or in the sidebar.

Location

Create a set of rules to determine edit screens

Show this field group if

and
ACF Extended
Howdy, ACF Extended
CategoriesAdd New
NameDescriptionSlugCount
Category 1category-11
Category 2category-21
Category 3category-31
Category 4category-41
TitleDescriptionSlugCount
Field Group

Fields Values

Fields values are saved using a custom post ID based on the taxonomy name: tax_{taxonomy_name}_options.

You can retrieve the value using the common get_field() function. Usage example:

// Taxonomy: Category
$textarea = get_field('textarea', 'tax_category_options');

// Taxonomy: Post Tag
$textarea = get_field('textarea', 'tax_post_tag_options');

// Taxonomy: My Taxonomy
$textarea = get_field('textarea', 'tax_my-taxonomy_options');