preloader
User Login

Lost your password?
Cart 0
/* Add real Luxus Property Gallery images to homepage slider */ add_action('wp_footer', function () { $properties = get_posts([ 'post_type' => 'property', 'post_status' => 'publish', 'posts_per_page' => -1, ]); $gallery_data = []; foreach ($properties as $property) { $options = get_post_meta($property->ID, 'sl_property_options', true); if (empty($options['_property_gallery'])) { continue; } $image_ids = explode(',', $options['_property_gallery']); $images = []; foreach ($image_ids as $image_id) { $url = wp_get_attachment_image_url((int) $image_id, 'large'); if ($url) { $images[] = $url; } } if (!empty($images)) { $gallery_data[get_permalink($property->ID)] = $images; } } ?>