Create carousel using custom field - WP Carousel

PHOTO EMBED

Thu Feb 29 2024 04:17:54 GMT+0000 (Coordinated Universal Time)

Saved by @Pulak

add_filter(
    'sp_wpcp_image_attachments',
    function( $attachments, $shortcode_id ) {
        // your shortocde id
        if ( '1252' === $shortcode_id ) {
            $gallery     = get_field('gallery');
            if ( is_array( $gallery ) ) {
                $attachments = $gallery;
            }
        }
        return $attachments;
    },
    10,
    2
);
content_copyCOPY

https://onedd.co.za/staging/wp-admin/admin.php?page