Skip to content

Commit fbb65a2

Browse files
authored
Pods 3.3.1 (#7424)
2 parents 08a7bc7 + 6447cd5 commit fbb65a2

File tree

6 files changed

+14
-6
lines changed

6 files changed

+14
-6
lines changed

changelog.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ Found a bug? Have a great feature idea? Get on GitHub and tell us about it and w
22

33
Our GitHub has the full list of all prior releases of Pods: https://github.com/pods-framework/pods/releases
44

5+
= 3.3.1 - May 2nd, 2025 =
6+
7+
* Fixed: Resolve issue with `get_block_wrapper_attributes()` usage. (@sc0ttkclark)
8+
59
= 3.3 - May 1st, 2025 =
610

711
* New minimum WP version required: WordPress 6.3+ (previously: WP 6.0+)

classes/PodsForm.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,7 @@ public static function attributes( $attributes, $name = null, $type = null, $opt
487487
}
488488

489489
if (pods_render_is_in_block()) {
490-
echo get_block_wrapper_attributes( $final_attributes );
490+
echo ' ' . get_block_wrapper_attributes( $final_attributes );
491491

492492
return;
493493
}

includes/general.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ static function( $class_name ) {
204204
$div_classes = implode( ' ', $div_classes );
205205

206206
if ( pods_render_is_in_block() ) {
207-
$attrs = get_block_wrapper_attributes(
207+
$attrs = ' ' . get_block_wrapper_attributes(
208208
array_filter(
209209
[
210210
'id' => $div_id,

init.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* Plugin Name: Pods - Custom Content Types and Fields
1111
* Plugin URI: https://pods.io/
1212
* Description: Pods is a framework for creating, managing, and deploying customized content types and fields
13-
* Version: 3.3.0
13+
* Version: 3.3.1
1414
* Author: Pods Framework Team
1515
* Author URI: https://pods.io/about/
1616
* Text Domain: pods
@@ -43,7 +43,7 @@
4343
add_action( 'init', 'pods_deactivate_pods_ui' );
4444
} else {
4545
// Current version.
46-
define( 'PODS_VERSION', '3.3.0' );
46+
define( 'PODS_VERSION', '3.3.1' );
4747

4848
// Current database version, this is the last version the database changed.
4949
define( 'PODS_DB_VERSION', '2.3.5' );

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pods",
3-
"version": "3.3.0",
3+
"version": "3.3.1",
44
"description": "Pods is a development framework for creating, extending, managing, and deploying customized content types in WordPress.",
55
"author": "Pods Foundation, Inc",
66
"homepage": "https://pods.io/",

readme.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Tags: pods, custom post types, custom taxonomies, content types, custom fields
55
Requires at least: 6.3
66
Tested up to: 6.8
77
Requires PHP: 7.2
8-
Stable tag: 3.3.0
8+
Stable tag: 3.3.1
99
License: GPLv2 or later
1010
License URI: http://www.gnu.org/licenses/gpl-2.0.html
1111

@@ -182,6 +182,10 @@ Pods really wouldn't be where it is without all the contributions from our [dono
182182

183183
== Changelog ==
184184

185+
= 3.3.1 - May 2nd, 2025 =
186+
187+
* Fixed: Resolve issue with `get_block_wrapper_attributes()` usage. (@sc0ttkclark)
188+
185189
= 3.3 - May 1st, 2025 =
186190

187191
* New minimum WP version required: WordPress 6.3+ (previously: WP 6.0+)

0 commit comments

Comments
 (0)