Skip to content

Commit 721fbd6

Browse files
committed
v6.2.9
Signed-off-by: Kolja Nolte <kolja.nolte@gmail.com>
1 parent 83fc0d8 commit 721fbd6

File tree

224 files changed

+40395
-38760
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

224 files changed

+40395
-38760
lines changed

acf.php

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* Plugin Name: Advanced Custom Fields PRO
1010
* Plugin URI: https://www.advancedcustomfields.com
1111
* Description: Customize WordPress with powerful, professional and intuitive fields.
12-
* Version: 6.2.7
12+
* Version: 6.2.9
1313
* Author: WP Engine
1414
* Author URI: https://wpengine.com/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields
1515
* Update URI: https://www.advancedcustomfields.com/pro
@@ -58,7 +58,7 @@ class ACF {
5858
*
5959
* @var string
6060
*/
61-
public $version = '6.2.7';
61+
public $version = '6.2.9';
6262

6363
/**
6464
* The plugin settings array.
@@ -151,6 +151,7 @@ public function initialize() {
151151
'preload_blocks' => true,
152152
'enable_shortcode' => true,
153153
'enable_bidirection' => true,
154+
'enable_block_bindings' => true,
154155
);
155156

156157
// Include utility functions.
@@ -402,6 +403,12 @@ public function init() {
402403
*/
403404
do_action( 'acf/include_taxonomies', ACF_MAJOR_VERSION );
404405

406+
// If we're on 6.5 or newer, load block bindings. This will move to an autoloader in 6.3.
407+
if ( version_compare( get_bloginfo( 'version' ), '6.5-beta1', '>=' ) ) {
408+
acf_include( 'includes/Blocks/Bindings.php' );
409+
new ACF\Blocks\Bindings();
410+
}
411+
405412
/**
406413
* Fires after ACF is completely "initialized".
407414
*

assets/build/css/acf-global.css

Lines changed: 83 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/build/css/acf-global.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/build/css/acf-global.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/build/css/pro/acf-pro-field-group.css

Lines changed: 18 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)