= 4) {
$reuse_index = ($index - 4) % count($reuse_pattern);
$img_position = $reuse_pattern[$reuse_index];
// Position 1 is featured image, others are in-article
if ($img_position === 1 && $featured_image_id) {
$img_url = wp_get_attachment_image_url($featured_image_id, 'large');
$img_type = 'landscape';
$img_align = 'full';
} elseif (isset($in_article_images[$img_position])) {
$img_data = $in_article_images[$img_position];
if (isset($img_data['attachment_id'])) {
$img_url = wp_get_attachment_image_url($img_data['attachment_id'], 'large');
} elseif (isset($img_data['url'])) {
$img_url = $img_data['url'];
}
$img_type = igny8_get_image_aspect($img_position);
$img_align = ($img_type === 'square') ? (($reuse_index % 2 === 0) ? 'right' : 'left') : 'full';
}
}
// Check if section has table
$has_table = igny8_section_has_table($section['content']);
if ($has_table && $img_url) {
// Place full-width image before table
$img_type = 'landscape';
$img_align = 'full';
$img_class = 'igny8-image-landscape igny8-image-before-table';
if (!$show_description) {
$img_class .= ' igny8-image-reuse';
}
?>
Visual Direction
Visual Direction
Visual Direction