CategoriesAdd New
Name | Description | Slug | Count | |
---|---|---|---|---|
Category 1 | — | category-1 | 1 | |
Category 2 | — | category-2 | 1 | |
Category 3 | — | category-3 | 1 | |
Category 4 | — | category-4 | 1 | |
Title | Description | Slug | Count |
Field Group
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.
Create a set of rules to determine edit screens
and |
Name | Description | Slug | Count | |
---|---|---|---|---|
Category 1 | — | category-1 | 1 | |
Category 2 | — | category-2 | 1 | |
Category 3 | — | category-3 | 1 | |
Category 4 | — | category-4 | 1 | |
Title | Description | Slug | Count |
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');