”
], { type: “text/html” }
);
const iframe = document.createElement(“iframe”);
iframe.src = URL.createObjectURL(blob);
iframe.style.cssText = “width:100%;height:100%;border:0;”;
container.appendChild(iframe);
attachIframeMessageListener(iframe);
}
const observer = new IntersectionObserver((entries, obs) => {
const entry = entries[0];
if (entry.isIntersecting) {
obs.unobserve(entry.target);
requestIdleCallback(() => {
initWidget(entry.target);
}, {
timeout: 200
});
}
}, {
root: null,
rootMargin: “300px 0px”,
threshold: 0.01
});
requestIdleCallback(() => {
$all(“.nl-inline-form-container”).forEach((c) => {
observer.observe(c);
});
});
})();
#5. WWE legend Paul Heyman was full of praise for Lil Yachty
Lil Yachty played an integral part in Trick Williams’ United States Championship win against Sami Zayn at WrestleMania 42. WWE legend Paul Heyman recently took to X/Twitter to heap praise on the megastar.
The Oracle noted that celebrity involvement in the Stamford-based promotion has become controversial in recent years, but he was happy to see how much respect Lil Yachty had for the professional wrestling business.
“We are living during a moment in time where the celebrity involvement in @WWE has become quite controversial. @lilyachty’s respect for WWE, the talent – history – and culture, along with the fan base, is undeniable. He’s a credit to the concept of ‘crossover into our business.’ @TKOGrp@_trickwilliams@USANetwork@TripleH,” he wrote.
#4. IYO SKY sent an emotional message to Kairi Sane
Kairi Sane was shockingly released from WWE alongside several other top names, including The Wyatt Sicks. After this heartbreaking news, IYO SKY took to X/Twitter to dedicate a post to Sane.
The Genius of the Sky wrote that she was extremely heartbroken by this news, highlighting that everyone in the locker room loved Kairi Sane. She also mentioned that Sane is one of the kindest, fun, and charming people ever, and she was proud to call her a best friend.
IYO also mentioned that Sane faced a lot of hard times in America, and they grew together in these years. The former Women’s World Champion added that it was extremely hard for her to accept the fact that her former Damage CTRL teammate would no longer be in the TKO-led promotion before wishing her all the best for the future.
“I understand that everyone, as an athlete, eventually faces a turning point when thinking about their life and career, but I feel so heartbroken that it came at such an unexpected time. Kairi was truly loved by all her colleagues, not just as a performer but as a person. She was kinder than anyone, a little airheaded in the most endearing way, funny, charming, and my proud best friend. A comrade-in-arms who faced countless hardships in America, shed so many tears, and grew together with me. It’s so hard to accept that Kairi won’t be in the passenger seat of the rental car anymore, but… I’m absolutely certain that with her innate talent and the incredible knowledge and experience she’s gained in WWE, Kairi’s new journey will be something truly amazing. From the bottom of my heart, I wish for my beloved Kairi’s success and happiness. I love you so much Kairi. We’ll be best friends forever and always,” wrote SKY.
#3. WWE legend The Miz wants to file a lawsuit against Danhausen
Danhausen and The Miz are currently involved in a huge storyline on WWE TV. They even shared a hilarious moment at WrestleMania 42, which involved John Cena as well.
However, it seems like the former WWE Champion has had enough of Danhausen’s antics. The Miz recently took to X/Twitter to send a message. He revealed that Danhausen “unlawfully” entered his house and used his pool on his private property.
“Danhausen unlawfully entered our home. He used our pool, trespassed on private property, and treated my golf simulator like it was public access. Most concerning, he caused significant damage to my wife’s hair, which, to this day, is still being treated,” he wrote.
The A-Lister added that he and his family have talked to the best attorneys in America and are looking to file a lawsuit against the free agent. Miz also mentioned that he didn’t think Danhausen’s trespassing on his private property was a joke, calling the former AEW star a “criminal.”
“We have formally retained the best attorneys in the country and have begun reviewing every available legal option. Our legal team is actively preparing the appropriate response and pursuing this matter accordingly. This is no longer a joke. This not a curse. Danhausen is a criminal. He is liable,” he added.
Check out his post below:
#2. Finn Balor appeals to fans for help
Finn Balor is currently in a heated feud with Dominik Mysterio and the rest of The Judgment Day. He locked horns with Dirty Dom in a singles match at WrestleMania 42, where he brought back The Demon character. Both stars put on an incredible display of action inside the ring, but the bout ultimately ended in The Prince’s favor.
The former Universal Champion recently took to X/Twitter to send a concerning message to his followers. Balor revealed that he had lost multiple pairs of his long wrestling tights and asked everyone to reach out to him if they found anything about it.
“MISSING: Multiple Pairs Of Long Wrestling Tights. Find found please reach out 🙏,” he wrote.
#1. Triple H reportedly didn’t have anything to do with WWE firings
WWE recently released some of the most popular names on the roster, including Kairi Sane, Dexter Lumis, Nikki Cross, The Motor City Machine Guns, Zelina Vega, and Aleister Black. These releases came as a huge shock to everyone, as many of the names mentioned above were involved in some important storylines on television.
Following these abrupt exits, many fans questioned whether it was the Triple H-led creative team’s decision or WWE’s parent company, TKO. Now, according to a recent report by Cory Hays of Bodyslam, all the stars who got released from the company on Friday received direct calls from TKO about their exits, which seemingly means The Game didn’t have anything to do with it.
It remains to be seen if any of the released names will return to the Stamford-based promotion at some point in the future.
More from Sportskeeda
${getStoryActionHTML(story, storyTitle, permalink)}
`;
if (index == 3 && isOpera) {
storyHTML += `
`;
}
recommendedArticlesContainer.innerHTML += storyHTML;
});
}
}
function getStoryActionHTML(story, storyTitle, permalink) {
if (shouldHidePostActions) return “”;
return `
`;
}
function recommendedArticles() {
var baseUrl = “https://cf-gotham.sportskeeda.com/recommendations/post/wwe-news-rumor-roundup-triple-h-not-responsible-for-mass-releases-legend-demands-lawsuit-finn-balor-appeals-for-help?lang=en&category=wwe”;
pureJSAjaxGet(baseUrl, function(data) {
renderRecommendedArticles(data);
if (isOpera) {
renderOperaFeedAd();
}
}, function() {}, false);
}
var options = {
root: null,
rootMargin: “0px 0px 70% 0px”,
threshold: 0.1
};
var observer = new IntersectionObserver(function (entries) {
entries.forEach(function (entry) {
if (entry.isIntersecting) {
recommendedArticles();
observer.unobserve(entry.target);
}
});
}, options);
var targetElement;
if (showAlsoReadSection && !showAlsoReadSectionV2) {
targetElement = document.querySelector(‘.also-read-articles-container’);
} else {
targetElement = document.querySelector(‘.recommended-posts’);
}
if (targetElement) {
observer.observe(targetElement);
}
function renderOperaFeedAd() {
var operaFeedArticleAd = $(“.opera-article-feed-ad”);
if (!operaFeedArticleAd) {
return;
}
var firstScript= document.createElement(‘script’);
firstScript.setAttribute(“type”, “text/javascript”);
firstScript.setAttribute(“src”, “https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1883810847636355”);
firstScript.setAttribute(“async”, true);
firstScript.setAttribute(“crossorigin”, “anonymous”);
operaFeedArticleAd.appendChild(firstScript);
operaFeedArticleAd.innerHTML += `
`;
var secondScript = document.createElement(‘script’);
var secondScriptCode=””;
try {
secondScript.appendChild(document.createTextNode(secondScriptCode));
operaFeedArticleAd.appendChild(secondScript);
} catch (e) {
console.error(e);
}
}
})();
Fetching more content…
Read the full article here


