PagesAdd New
Field Group
ACF Extended adds a new location on the admin post 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 |
Fields values are saved using a custom post ID based on the post type name: {post_type_name}_options
.
You can retrieve fields values using the common get_field()
function. Usage example:
// Post Type: Page
$textarea = get_field('textarea', 'page_options');
// Post Type: Post
$textarea = get_field('textarea', 'post_options');
// Post Type: My Post Type
$textarea = get_field('textarea', 'my-post-type_options');