get featured image url

// Step 1: Get the Post ID
$post_id = get_the_ID();

// Step 2: Get the Featured Image ID
$featured_image_id = get_post_thumbnail_id( $post_id );

// Step 3: Get the Featured Image URL
$featured_image_url = wp_get_attachment_url( $featured_image_id );