Aliyah Boston is one of the most exciting young players in the WNBA. She was the first pick of the 2023 WNBA draft and was selected by the Indiana Fever. Boston received a lot of media attention with her 20-point performance against the Connecticut Sun on Tuesday night.

The 6-foot-5 forward began her professional career with two 15-point games. She's averaging 15.8 points and six rebounds per game early in the season, and many basketball fans have fallen in love with her skills.

Aliyah Boston's parents have supported her throughout her basketball journey. They were often seen in the audience of her college games, where Aliyah established herself as one of the best prospects in the country.

'; }); pollOptions.innerHTML = pollOptionsDom; pollCount.innerHTML = totalVotes + ' votes'; if (totalVotes > 10) { pollCount.classList.remove("hidden"); } } function trackBetsTodayPollImpression() { var intersectionObserverForArticlePoll = new IntersectionObserver( function(entries) { entries.forEach(function(entry) { var pollId = entry.target.getAttribute("data-poll-id"); if (POLLS_BY_ID[pollId]['impression_tracked']) return; if (!entry.target || !entry.isIntersecting || entry.intersectionRatio < 0.5) return; setTimeout(function() { if (isInViewport(entry.target)) { POLLS_BY_ID[pollId]['impression_tracked'] = true; var isDesktop = "1"; var gaPayload = { "question" : POLLS_BY_ID[pollId]['question'], "category": "Basketball", "page_url": window.location.href, "option1": POLLS_BY_ID[pollId]['option1'], "option2": POLLS_BY_ID[pollId]['option2'], } if (isDesktop) { gaPayload["device"] = "Desktop"; } else { gaPayload["device"] = "Mobile"; } gtag("event", "BETS_TODAY_POLL_IMPRESSION", gaPayload); intersectionObserverForArticlePoll.unobserve(entry.target); } }, 1000); }); }, { threshold: 0.5 } ); var pollElements = document.querySelectorAll('.bets-today-poll'); pollElements.forEach(function(pollElement) { var isAnswered = pollElement.querySelector(".poll-option-answered"); if (!isAnswered) { intersectionObserverForArticlePoll.observe(pollElement); } }) } return { answerPollX: answerPollX, }; }();

Aliyah Boston's parents are from U.S. Virgin Islands

Aliyah Boston's parents are Cleone and Algernon Boston. They are from U.S. Virgin Islands, where the Indiana Fever star was born in 2001. Cleone and Algernon tied the knot in 1999 in Charlotte Amalie, the capital and the largest city of the territory.

Interestingly, both Aliyah and Alexis, her older sister, fell in love with basketball. Due to this, their parents sent them to New England to play organized basketball and compete. As a consequence, Aliyah did not see her parents frequently.

Aliyah Boston's parents tied the knot in 1999, two years before giving birth to her (Image via Facebook)
Aliyah Boston's parents tied the knot in 1999, two years before giving birth to her (Image via Facebook)

Cleone Boston, Aliyah's mother, is reportedly the president of the Miracle Babies Foundation. The non-profit organization was founded in 2001 and has donated more than $170,000 to Schneider Regional Medical Center in St. Thomas, U.S. Virgin Islands.

You may be interested in reading: Indiana Fever selects Aliyah Boston and Grace Berger in WNBA draft 2023

Cleone is very active on her Facebook and mostly shares religious posts. Additionally, the WNBA star's mother frequently posts about her daughter and her amazing basketball performances.

There isn't much public information available on Algernon Boston, Aliyah's father. However, we do know that he's a big fan of his daughter and has attended many of her games, especially when she played for the South Carolina Gamecocks.

Aliyah also has a sister named Alexis, who is a big reason why she also started playing basketball. The Indiana Fever star was inspired by her sister's skills and wanted to play the sport as well.

You may be interested in reading: Who is Karl Malone's kid in the WNBA? Exploring her life, career, and stats

The young basketball player also had a brother named Alec Craig, but he was born prematurely and did not survive. The tragic death was among the reasons why Aliyah's mother decided to help others who struggle with the same problem.

Quick Links

More from Sportskeeda

" modalPopup.closeOnEsc = false; modalPopup.setHeader("Why did you not like this content?"); modalPopup.setContentText(modalText); modalPopup.addCancelOkButton("Submit", resetRatingAndFeedbackForm, sendRating); modalPopup.removeCloseModalIcon(); modalPopup.disableDismissPopup(); modalPopup.open(); } else { sendRating(index); } } function sendRating() { var requestPayload = { "post_id": 1529930, "rating_value": ratingValue } if (ratingValue > 3) { requestPayload.rating_feedback_type = null; requestPayload.rating_feedback = null; } else { if (!$('input[name="drone"]:checked') || !$('input[name="drone"]:checked').value) { showErrorMessage('option'); return; } if (!$(".post-rating-feedback-note textarea") || !$(".post-rating-feedback-note textarea").value) { showErrorMessage('note'); return; } var selectedOption = $('input[name="drone"]:checked').value; var feedbackNote = $(".post-rating-feedback-note textarea").value; requestPayload.rating_feedback_type = selectedOption; requestPayload.rating_feedback = feedbackNote; } pureJSAjaxPost(addratingAPI, requestPayload, onsaveRatingSuccess, onsaveRatingFail, function() {}, true); } function resetRatingAndFeedbackForm() { var activeStars = Array.from($all('.rating span.rating-star.active')); for (var i=0; i < activeStars.length; i++) { activeStars[i].classList.remove("active"); } if ($('input[name="drone"]:checked')) { $('input[name="drone"]:checked').checked = false; } var userNote = document.querySelector(".post-rating-feedback-note textarea"); userNote.value = ''; modalPopup.close(); } function onsaveRatingSuccess() { modalPopup.close(); savePostIdInUserRatedPostsCookie(); $("#post-rating-layout").classList.add("hidden"); $("#post-rating-message").classList.remove("hidden"); window.setInterval(function showMessage() { $("#post-rating-widget").classList.add("hidden"); }, 3000); } function onsaveRatingFail() { console.error('Saving post rating failed!'); modalPopup.close(); } function savePostIdInUserRatedPostsCookie() { userRatedPostIds.push(1529930); var expiryTime = new Date(); expiryTime.setMonth(expiryTime.getMonth() + 12); // Expiry after 1 year setCookie("user_rated_post_ids", JSON.stringify(userRatedPostIds), expiryTime); } function isPostRatedByUser() { var userRatedPostIds = getCookie('user_rated_post_ids'); if (userRatedPostIds) { try { userRatedPostIds = JSON.parse(userRatedPostIds); } catch (err) { console.error(err); return false; } } else { return false; } if(userRatedPostIds.indexOf(1529930) >= 0) { return true; } else { return false; } } function getRatingCountByPostId(postId) { return new Promise(function(resolve, reject) { pureJSAjaxGet( getRatingCountBaseURL + postId + '/rating/count', function(data) { try { data = JSON.parse(data); if (data.meta_value) { resolve(data.meta_value); } reject("Failed to fetch rating count for the post:" + postId); } catch (err) { reject("Failed to fetch rating count for the post:" + postId); } }, function(err) { reject("Failed to fetch rating count for the post:" + postId); }, true); }); } function showErrorMessage(messageType) { var messageContainerId = '#' + messageType + '-error'; $(messageContainerId).classList.remove('hidden'); window.setInterval(function () { $(messageContainerId).classList.add("hidden"); }, 5000); } (function() { var callFired = false; function lazyLoadPostRating() { if (callFired) return; callFired = true; if (!isPostRatedByUser()) { getRatingCountByPostId(1529930) .then(function(ratingCount) { if (ratingCount < 10) { $("#post-rating-widget").classList.remove("hidden"); } }) .catch(function(err){ console.error(err); }); } } document.addEventListener("scroll", lazyLoadPostRating, { passive: true, once: true }); document.addEventListener("mousemove", lazyLoadPostRating, { passive: true, once: true }); document.addEventListener("touchmove", lazyLoadPostRating, { passive: true, once: true }); })();