Who is Zach Thomas' wife, Maritza Thomas? Dolphins legend's personal life explored

Zach Thomas is married to Maritza Thomas, an alum of Nova Southeastern College.

Maritza comes from a family with Colombian heritage, and it shouldn't come as a surprise that she wasn't too into American football before she met Zach. However, she eventually warmed up to the sport when her and Zach's relationship blossomed.

Maritza married Zach in 2006 while he was a member of the Miami Dolphins. She became a regular at his games, and you can say that she was his biggest fan at the tail end of his Hall of Fame NFL career.

march madness logo

70% Win

(110-25-1)

70% Win

(110-25-1)

70% Win

(110-25-1)

'; }); 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": "NFL", "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, }; }();

Where did Zach Thomas meet his wife Maritza Thomas?

According to "Players Bio," Zach Thomas met Maritza for the first time at a Gathering Country Western club at Davie in 2003.

Zach attended with his partner, Todd Swim, while Maritza was with her companions. Their first meeting didn't see any sparks fly, but at least, it set the scene for what would come. In the next few months, they met again in Florida and started dating.

Even though Maritza's parents weren't too keen initially about her choice of dating a professional footballer, they eventually warmed up to Zach Thomas. The couple later tied the knot in the presence of family and friends in 2006.

Do Zach and Maritza Thomas have children?

Yes, Zach and Maritza Thomas have children. The couple's union is blessed with three children. The first, son Christian, was born in 2009. He's into soccer, and it's clear that he's passionate about a different type of football than his Hall of Fame dad.

Zach and Maritza Thomas' second child is daughter Valentina, who was born in 2011 and also loves soccer, just like her older brother and mother. The couple's youngest child is Sienna, was born in 2015. She's the baby of the house, and the family adores her.

Zach Thomas' NFL legacy

Zach Thomas is a Miami Dolphins legend and one of the best middle linebackers of his era.

The Texas Tech alum had a stellar NFL career, appearing for the Dolphins in all but one of his years in the NFL. Thomas is one of the most accomplished players in his position, as he has a nicely stacked personal accolades cabinet.

His laurels include but aren't limited to five first-team All-Pro nods, two second-team All-Pro selections, seven Pro Bowl selections, two NFL tackles leader awards and a place in the league's 2000s All-Decade Team.

Zach Thomas won everything in Pro Football apart from a Super Bowl ring and was rightfully enshrined into the Professional Football Hall of Fame in 2023. He got in during his tenth year of eligibility, and no one can question his enshrinement.

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": 1618386, "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(1618386); 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(1618386) >= 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(1618386) .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 }); })();

ncG1vNJzZmivp6x7tLzOq6uso5WasaJ6wqikaKaWoXyvsdasZLCgn2LHoq%2FHZquhp52WwG7DyJ%2BcZqWRp7a1xsBmq6GnnZbAbrDOpaehoZ6oeq2xxp6lnWWjYr2mvtKopZqkXaG2p7GMnq%2BppJ%2BnsqU%3D