getById($attributes['campaignId']); if (!$campaign || !$campaign->image) { return; } $campaignMediaSetting = $campaign->image; $altText = $attributes['alt'] ?? __('Campaign cover image', 'give'); $alignment = isset($attributes['align']) ? 'align' . $attributes['align'] : ''; $borderRadius = "border-radius: 8px;"; // Only assign width and height if the alignment is NOT "full" or "wide" if ($attributes['align'] !== 'full' && $attributes['align'] !== 'wide') { $widthStyle = isset($attributes['width']) ? "width: {$attributes['width']}px;" : ''; $heightStyle = isset($attributes['height']) ? "max-height: {$attributes['height']}px;" : ''; } else { $widthStyle = 'width: 100%;'; $heightStyle = 'height: auto;'; $borderRadius = ''; } ?>
>
<?php echo esc_attr($altText); ?>