如何从Woocommerce中的数组中检索链接产品URL?

I have added a new custom Linked Product field under "up-sells" in the Woocommerce admin section.

I've used the following code (credit to TheYaXxE):

// Display the custom fields in the "Linked Products" section
add_action( 'woocommerce_product_options_related', 'woocom_linked_products_data_custom_field' );

// Save to custom fields
add_action( 'woocommerce_process_product_meta', 'woocom_linked_products_data_custom_field_save' );


// Function to generate the custom fields
function woocom_linked_products_data_custom_field() {
    global $woocommerce, $post;
?>
<p class="form-field">
    <label for="upsizing_products"><?php _e( 'Upsizing Product', 'woocommerce' ); ?></label>
    <select class="wc-product-search" multiple="multiple" style="width: 50%;" id="upsizing_products" name="upsizing_products[]" data-placeholder="<?php esc_attr_e( 'Search for a product&hellip;', 'woocommerce' ); ?>" data-action="woocommerce_json_search_products_and_variations" data-exclude="<?php echo intval( $post->ID ); ?>">
        <?php
            $product_ids = get_post_meta( $post->ID, '_upsizing_products_ids', true );

            foreach ( $product_ids as $product_id ) {
                $product = wc_get_product( $product_id );
                if ( is_object( $product ) ) {
                    echo '<option value="' . esc_attr( $product_id ) . '"' . selected( true, true, false ) . '>' . wp_kses_post( $product->get_formatted_name() ) . '</option>';
                }
            }
        ?>
    </select> <?php echo wc_help_tip( __( 'Select Products Here.', 'woocommerce' ) ); ?>
</p>

<?php
}

// Function the save the custom fields
function woocom_linked_products_data_custom_field_save( $post_id ){
    $product_field_type =  $_POST['upsizing_products'];
    update_post_meta( $post_id, '_upsizing_products_ids', $product_field_type );
}

The good news, everything works great!

However, now I'm trying to display the selected linked product on the product page for customers to see. I would like to only show the URL. My question is, how can I retrieve the selected product's URL only?

I've used the following line, but it will always return an empty array:

$custom_field_url = get_post_meta( $product->get_id(), '_bigger_size_url', true );

Also tried the following, but it retrieved the current product not the linked one:

$custom_field_url = get_permalink( $product->get_id(), '_bigger_size_url', true );

As I understood, you want the URL of the products and you have the IDs.
Since WooCommerce products are 'Custom Post Type' in WordPress, you can use get_permalink() function to get the URL as below:

$product_url = get_permalink( $product->get_id() );