extend metadata functionality to WordPress. It is a free plugin with a PRO version available to add additional functionality. Created by Elliot Condon from Melbourne, Australia. 3
in custom metabox feature, you can use ACF to set up advanced metadata functionality that writes to the database and can be retrieved anywhere in your WordPress install, including the REST api and Project Gutenberg. ACF also has a simple to use and powerful API. All within a very user-friendly interface with smart use of Javascript and PHP awesomeness. 4
vast. They allow for content creation from galleries to multiple content layouts. Using the API, you can even create your own field types. With the PRO version, you can even repeat field types, create options sections for WordPress and more. 7
They are each $25 dollars per site. Repeater Field - Create a set of sub fields which can be repeated while editing content. Gallery Field - An interface for managing a collection of images. Options Page - Add extra admin pages to edit ACF fields. Flexible Content Field - A flexible content layout manager. With the PRO version, can get all of the add-ons built plus new field types such as Clone for the same price. 8
very intricate and programmatic code that extends the functionality of, not only ACF, but of your WordPress site. You can even include ACF generated fields in your themes! Update delete_sub_field() update_field() Updates a field value. update_field($selector, $value, [$post_id]); delete_field() Deletes a field value. Delete _field($selector, [$post_id]); update_sub_field() Updates a sub field value. update_sub_field( $selector, $value, [$post_id] ); add_row() Adds a new row of data to an existing repeater / flexible content field value. add_row( $selector, $value, [$post_id] ); 9
(free) plugin and configuring a field group. 3. Walking through the plugin screens. 4. Exporting our example. 5. Adding `PHP` code. 6. Viewing our work. 7. Installing ACF Pro and extending our example. 11