We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e15369e commit 1309553Copy full SHA for 1309553
redux-core/inc/fields/gallery/class-redux-gallery.php
@@ -35,7 +35,7 @@ public function render() {
35
36
foreach ( $ids as $attachment_id ) {
37
$img = wp_get_attachment_image_src( $attachment_id );
38
- if ( ! false === $img ) {
+ if ( false !== $img ) {
39
$alt = wp_prepare_attachment_for_js( $attachment_id );
40
$alt = $alt['alt'] ?? '';
41
0 commit comments