=== ACF Page Builder Field === Contributors: pekz0r, moelleer, angrycreative Tags: acf, page builder, site origin page builder, flexible content, flexibale fields, acf flexible content Requires at least: 4.0 Tested up to: 4.4 Stable tag: 1.0.0-rc License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html This plugin will add a Page Builder field type in Advanced Custom Fields. == Description == This plugin will add a page builder field type in Advanced custom fields. This is primarily for usage in ACFs flexible content layouts where you want to build more advanced layouts inside the ACF sections. We think this plugin together with ACF Flexible Content gives the content editors just the right amount of freedom over page layouts. More information here will come shortly. = Requirements = * Advanced Custom Fields 5+ * Page Builder by SiteOrigin * PHP 5.3+ = Theme integration = We recommend using this plugin together with ACF Flexible Content for building beautiful landing pages. This is an example of a template using ACF Flexible Content: ` if( have_rows('flexible_content_field_name') ) : while ( have_rows('flexible_content_field_name') ) : the_row(); switch( get_row_layout() ) { case 'page_builder_layout': if( get_sub_field( 'page_builder_field' ) ) { echo get_sub_field( 'page_builder_field' ); } break; case 'other_layout': the_sub_field('field1'); the_sub_field('field2'); break; } endwhile; endif; ` For more information, read about [flexible content on advancedcustomfields.com](http://www.advancedcustomfields.com/resources/flexible-content/). We recommend using one of the latest versions of WordPress, Advanced Custom Fields and Page Builder by SiteOrigin at all times for best compatibility. == Screenshots == 1. This shows the field in WP-Admin. The page builder button opens up a Page Builder, just like the normal one from Site Origin. == Installation == 1. Copy the `acf-page-builder-field` folder into your `wp-content/plugins` folder. 2. Activate the ACF Page Builder Field plugin via the plugins admin page. 3. Create a new field via ACF and select the Page Builder Field type. 4. Display the field in your theme's templates with `get_field()` or `get_sub_field()` as usual. 5. Enjoy your improved CMS experience! == Changelog == = 1.0.0 = * First stable release = 0.1.0 = * Initial Beta Release. == Upgrade Notice == = 1.0.0 = * This is a stable version. Please upgrade! Plase note that you might need to reactivate the plugin after updating.