'accreditations',
'posts_per_page' => -1, // Get all accreditations posts
));
if ($accreditations_query->have_posts()) :
while ($accreditations_query->have_posts()) : $accreditations_query->the_post();
// Get the featured image details
$featured_image_id = get_post_thumbnail_id();
$featured_image = wp_get_attachment_image_src($featured_image_id, 'full'); // Get full size image
$featured_image_url = $featured_image[0] ?? ''; // URL of the image
$featured_image_alt = get_post_meta($featured_image_id, '_wp_attachment_image_alt', true); // Alt text
$featured_image_title = get_the_title($featured_image_id); // Title of the image
?>