Skip to content

Commit

Permalink
v6.2.9
Browse files Browse the repository at this point in the history
Signed-off-by: Kolja Nolte <[email protected]>
  • Loading branch information
thaikolja committed Apr 28, 2024
1 parent 83fc0d8 commit 721fbd6
Show file tree
Hide file tree
Showing 224 changed files with 40,395 additions and 38,760 deletions.
11 changes: 9 additions & 2 deletions acf.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* Plugin Name: Advanced Custom Fields PRO
* Plugin URI: https://www.advancedcustomfields.com
* Description: Customize WordPress with powerful, professional and intuitive fields.
* Version: 6.2.7
* Version: 6.2.9
* Author: WP Engine
* Author URI: https://wpengine.com/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields
* Update URI: https://www.advancedcustomfields.com/pro
Expand Down Expand Up @@ -58,7 +58,7 @@ class ACF {
*
* @var string
*/
public $version = '6.2.7';
public $version = '6.2.9';

/**
* The plugin settings array.
Expand Down Expand Up @@ -151,6 +151,7 @@ public function initialize() {
'preload_blocks' => true,
'enable_shortcode' => true,
'enable_bidirection' => true,
'enable_block_bindings' => true,
);

// Include utility functions.
Expand Down Expand Up @@ -402,6 +403,12 @@ public function init() {
*/
do_action( 'acf/include_taxonomies', ACF_MAJOR_VERSION );

// If we're on 6.5 or newer, load block bindings. This will move to an autoloader in 6.3.
if ( version_compare( get_bloginfo( 'version' ), '6.5-beta1', '>=' ) ) {
acf_include( 'includes/Blocks/Bindings.php' );
new ACF\Blocks\Bindings();
}

/**
* Fires after ACF is completely "initialized".
*
Expand Down
97 changes: 83 additions & 14 deletions assets/build/css/acf-global.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion assets/build/css/acf-global.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/build/css/acf-global.min.css

Large diffs are not rendered by default.

18 changes: 18 additions & 0 deletions assets/build/css/pro/acf-pro-field-group.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 721fbd6

Please sign in to comment.