Skip to content

Commit d478c43

Browse files
authored
[N/A] Update ACF to 6.6.1 (#195)
1 parent 0d043f4 commit d478c43

File tree

381 files changed

+77357
-69552
lines changed

Some content is hidden

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

381 files changed

+77357
-69552
lines changed

wp-content/plugins/advanced-custom-fields-pro/acf.php

Lines changed: 55 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,24 @@
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.4.2
12+
* Version: 6.6.1
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
1616
* Text Domain: acf
1717
* Domain Path: /lang
1818
* Requires PHP: 7.4
19-
* Requires at least: 6.0
19+
* Requires at least: 6.2
20+
*/
21+
22+
/**
23+
* @package ACF
24+
* @author WP Engine
25+
*
26+
* © 2025 Advanced Custom Fields (ACF®). All rights reserved.
27+
* "ACF" is a trademark of WP Engine.
28+
* Licensed under the GNU General Public License v2 or later.
29+
* https://www.gnu.org/licenses/gpl-2.0.html
2030
*/
2131

2232
if ( ! defined( 'ABSPATH' ) ) {
@@ -28,15 +38,14 @@
2838
/**
2939
* The main ACF class
3040
*/
31-
#[AllowDynamicProperties]
3241
class ACF {
3342

3443
/**
3544
* The plugin version number.
3645
*
3746
* @var string
3847
*/
39-
public $version = '6.4.2';
48+
public $version = '6.6.1';
4049

4150
/**
4251
* The plugin settings array.
@@ -59,6 +68,48 @@ class ACF {
5968
*/
6069
public $instances = array();
6170

71+
/**
72+
* The loop instance.
73+
*
74+
* @var acf_loop
75+
*/
76+
public $loop;
77+
78+
/**
79+
* The revisions instance.
80+
*
81+
* @var acf_revisions
82+
*/
83+
public $revisions;
84+
85+
/**
86+
* The fields instance.
87+
*
88+
* @var acf_fields
89+
*/
90+
public $fields;
91+
92+
/**
93+
* The form front instance.
94+
*
95+
* @var acf_form_front
96+
*/
97+
public $form_front;
98+
99+
/**
100+
* The validation instance.
101+
*
102+
* @var acf_validation
103+
*/
104+
public $validation;
105+
106+
/**
107+
* The admin tools instance.
108+
*
109+
* @var acf_admin_tools
110+
*/
111+
public $admin_tools;
112+
62113
/**
63114
* A dummy constructor to ensure ACF is only setup once.
64115
*

wp-content/plugins/advanced-custom-fields-pro/assets/build/css/acf-field-group.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.

wp-content/plugins/advanced-custom-fields-pro/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.

wp-content/plugins/advanced-custom-fields-pro/assets/build/css/acf-input.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.

wp-content/plugins/advanced-custom-fields-pro/assets/build/css/pro/acf-pro-input.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.

wp-content/plugins/advanced-custom-fields-pro/assets/build/js/acf-escaped-html-notice.min.js

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

wp-content/plugins/advanced-custom-fields-pro/assets/build/js/acf-field-group.min.js

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

wp-content/plugins/advanced-custom-fields-pro/assets/build/js/acf-input.min.js

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

wp-content/plugins/advanced-custom-fields-pro/assets/build/js/acf-internal-post-type.min.js

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

wp-content/plugins/advanced-custom-fields-pro/assets/build/js/acf.min.js

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

0 commit comments

Comments
 (0)