Home > PRESIDENT TRUMP
184 views 12 min 0 Comment

Jeff Kent Elected to Hall of Fame; Clemens Snubbed Despite Trump Warning

Tevin McLeod - December 7, 2025





Newsmax Wires
Sunday, 07 December 2025 09:15 PM EST

Jeff Kent was elected to baseball’s Hall of Fame on Sunday by the contemporary era committee, while steroids-tainted stars Barry Bonds and Roger Clemens were among seven players who fell short once again.

Kent appeared on 14 of 16 ballots, two more than the 12 ballots needed for the 75% minimum.

Carlos Delgado received nine votes, followed by Don Mattingly and Dale Murphy with six each.

Bonds, Clemens, Gary Sheffield and Fernando Valenzuela each received fewer than five votes.

Clemens’ snub will not sit well with President Donald Trump.

“It was the Obama DOJ (of course!) that viciously went after the great Roger Clemens,” Trump wrote Sunday afternoon on Truth Social.

“ROGER WAS FULLY ACQUITTED OF ALL CHARGES!!! President DJT.”

Trump’s social media posts this weekend urged support for Clemens for the Hall of Fame.

“Roger Clemens, who won 354 games, went through his own Witch Hunt,” Trump also wrote on Truth Social.

“HE WAS ACQUITTED OF ALL CHARGES!!! If he doesn’t get into the Hall of Fame, he should sue the hell out of Major League Baseball! President DJT.”

Kent will be inducted at the hall in Cooperstown, New York, on July 26 along with anyone chosen by the Baseball Writers’ Association of America, whose balloting will be announced  Jan. 20.

A five-time All-Star second baseman, he batted .290 with 377 homers and 1,518 RBIs over 17 seasons with Toronto (1992), the New York Mets (1992-96), Cleveland (1996), San Francisco (1997-2002), Houston (2003-04) and the Los Angeles Dodgers (2005-08).

His 351 home runs as a second baseman are the most by a player at that position.

Kent received 15.2% in his first BBWAA appearance in 2014 and a high of 46.5% in the last of his 10 times o the ballot in 2023.

The Hall in 2022 restructured its veterans committees for the third time in 12 years, setting up panels to consider the contemporary era from 1980 on, as well as the classic era. The contemporary baseball era holds separate ballots for players and another for managers, executives and umpires.

Each committee meets every three years. Contemporary managers, executives and umpires will be considered in December 2026, classic era candidates in December 2027 and contemporary era players again in December 2028.

Under a change announced by the Hall last March, candidates who received fewer than five votes are not eligible for that committee’s ballot during the next three-year cycle. A candidate who is dropped, later reappears on a ballot and again receives fewer than five votes would be barred from future ballot appearances.

Bonds and Clemens fell short in 2022 in their 10th and final appearances on the BBWAA ballot, when Bonds received 260 of 394 votes (66%) and Clemens 257 (65.2%). Sheffield received 63.9% in his final BBWAA vote in 2024, getting 246 votes and falling 43 shy.

Bonds denied knowingly using performance-enhancing drugs and Clemens maintains he never used PEDs. Sheffield said he was unaware that substances he used during training ahead of the 2002 season contained steroids.

A seven-time NL MVP and 14-time All-Star outfielder, Bonds set the career home run record with 762 and the season record with 73 in 2001.

A seven-time Cy Young Award winner, Clemens went 354-184 with a 3.12 ERA and 4,672 strikeouts, third behind Nolan Ryan (5,714) and Randy Johnson (4,875).

The December 2027 ballot is the first chance for Pete Rose to appear on a Hall ballot after baseball Commissioner Rob Manfred decided in May that Rose’s permanent suspension ended with his death in September 2024. The Hall prohibits anyone on the permanent ineligible list from appearing on a ballot.

Newsmax writer Eric Mack contributed to this report.


Copyright 2025 The Associated Press. All rights reserved. This material may not be published, broadcast, rewritten or redistributed without permission.



TheWire


Jeff Kent was elected to baseball’s Hall of Fame on Sunday by the contemporary era committee, while steroids-tainted stars Barry Bonds and Roger Clemens were among seven players who fell short once again.


baseball, jeff kent, hall of fame, roger clemens, donald trump


612


Sunday, 07 December 2025 09:15 PM


2025-15-07


Sunday, 07 December 2025 09:15 PM

Join the Newsmax Community

 


Free Newsmax E-Alerts

Privacy: We never share your email.

 

 \
\
\
‘;

var showDesktop = true;
var showMobile = false;
var enabled = false;

if (showMobile && (window.innerWidth <= 992)) { enabled = true; }
if (showDesktop && (window.innerWidth > 992)) { enabled = true; }

if (enabled) {
// Append template
jQuery(“#p_lt_zoneContent_pageplaceholder_p_lt_zoneRight_NewsmaxTVLive_NMTVPlayerContainer”).html(playerTemplate);

// Schedule
(function ($, d) {

var schedule = {
data: {},
endpoint: ‘/CMSPages/NewsMax/Handlers/TVScheduleHandler.ashx’,
limit: ‘2’, //how many shows to display

parse: function (v) {
var datetime = v.ShowDateTime.split(‘T’);
(!this.data[datetime[0]]) ? this.data[datetime[0]] = new Array() : [];
this.data[datetime[0]].push(v);
},

createSchedule: function () {
var schedule = $(‘#NMTVplayer-schedule’);
schedule.empty();
var tpl=””;
schedule.append(tpl);
},

populate: function (s) {
var _this = this;
var count = 0; //used to show the categories

function template(o, j) {
return ” +
” + moment(o.datetime).format(‘LT’).replace(” AM”, “a ET”).replace(” PM”, “p ET”) + ‘ • ‘ +
” + o.title + ” +
”;
}

s = s[Object.keys(s)[0]].concat(s[Object.keys(s)[1]]); // Get data for today and tomorrow
//console.log(Object.keys(s)); // display shows array on console
s = s.slice(0, _this.limit); // Only get the limit!

$.each(s, function (j, o) {
var nmSubtitle = “”;

if (o.Episode == o.Program) {
nmSubtitle = “”;
} else {
nmSubtitle = o.Episode;
}
var program = {
datetime: o.ShowDateTime,
title: o.Program,
description: o.Description,
subtitle: nmSubtitle
};

if (count == 0) {
$(‘#schedule’).append(‘On Now:’);
} else if (count == 1) {
$(‘#schedule’).append(‘Coming Up:’);
}
$(‘#schedule’).append(template(program, j));
count = count + 1;
});
},

scrollUp: function () {
var target = $(‘#NMTVplayer-schedule’);
$(‘html, body’).animate({
scrollTop: target.offset().top – 100
}, 1000);
},

init: function (ms) {
var _this = this;
var hash = (ms) ? “?h=” + ms : “”;
$.getJSON(_this.endpoint + hash, function (data) {
$.each(data, function (i, v) { _this.parse(v); });

_this.createSchedule();
_this.populate(_this.data);
});

}
};

// Initialize
schedule.init();

// Intervals
var everyInterval = 1860000; // 31 Minutes
var nextInterval = Math.abs(moment().endOf(‘hour’).toDate() – moment().toDate());
window.setTimeout(function () {
schedule.init(Date.now());
window.setInterval(function () {
schedule.init(Date.now());
}, everyInterval);
}, nextInterval);
})(window.jQuery, this)

if (typeof akamai == “undefined”) {
jQuery.getScript(‘https://amp.akamaized.net/hosted/1.1/player.esi?apikey=newsmax&version=9.1.20’, function () {
loadVideoPlayer(); // run once loaded!
});
}
}

function loadVideoPlayer() {
var config = {
autoplay: true,
muted: true,
captioning: { enabled: true },
playsinline: true,
autoplayPolicy: “muted”,
media: {
title: “Newsmax TV Live”,
source: [{
src: “https://nmxlive.akamaized.net/hls/live/529965/Live_1/index.m3u8”,
type: “application/x-mpegURL”
}],
track: [{
kind: “captions”,
type: “text/cea-608”,
srclang: “eng”
}]
},
cmcd: {
contentId: “newsmaxlive”
},
plugins: {
ima: {
resources: [{
src: “//imasdk.googleapis.com/js/sdkloader/ima3.js”,
debug: “//imasdk.googleapis.com/js/sdkloader/ima3_debug.js”,
type: “text/javascript”,
async: true
},
{
src: “${paths.plugins}ima/Ima.min.js”,
debug: “${paths.plugins}ima/Ima.js”,
type: “text/javascript”,
async: true
}],
adTagUrl: “https://pubads.g.doubleclick.net/gampad/live/ads?iu=/6305169/Newsmax/Video/livestream&description_url=http://www.newsmax.com&tfcd=0&npa=0&sz=640×480&gdfp_req=1&vpos=preroll&output=vast&unviewed_position_start=1&env=vp&impl=s&correlator=&vpmute=1&plcmt=1″
},
googleanalytics: {
resources: [
{
src: “https://www.googletagmanager.com/gtag/js?id=G-MDSEMR3DWD”,
type: “text/javascript”,
async: true,
},
{
src: “#{paths.plugins}googleanalytics/Googleanalytics.js”,
type: “text/javascript”,
async: true,
},
],
trackingId: “G-MDSEMR3DWD”,
mode: “gtag”,
events: {
video: [
{
type: “started”,
data: {
metric1: “viewDuration”,
dimension1: “#{media.title}”,
metric2: “#{media.duration}”,
},
},
{
type: “ended”,
data: {
metric1: “viewDuration”,
dimension1: “#{media.title}”,
metric2: “#{media.duration}”,
},
},
],
ads: [
{
type: “adstarted”,
data: {
dimension3: “#{ads.currentAd.title}”,
metric3: “#{ads.currentAd.duration}”,
},
},
{
type: “adended”,
data: {
dimension3: “#{ads.currentAd.title}”,
metric3: “#{ads.currentAd.duration}”,
}
}
]
}
}
}
};

function createVideoPlayer() {
var amp = akamai.amp.AMP.create(“amp”, config, function (event) {
amp = event.player;
const defaults = {
visible: false,
fontFamily: “proportionalSansSerif”,
fontSize: “med”,
fontColor: “white”,
fontOpacity: “100%”,
edgeType: “rightShadow”,
edgeColor: “black”,
edgeOpacity: “50%”,
backgroundColor: “black”,
backgroundOpacity: “0%”,
windowColor: “black”,
windowOpacity: “50%”,
scroll: “popout”
}
if (amp.captioning != null)
amp.captioning.changeSettings(defaults)
//alternatevely settings can be refreshed by clearin local storage key
//localStorage.removeItem(“akamai_amp”);
});
// once created detach scroll event
window.removeEventListener(“scroll”, onscroll, { passive: true })

window.addEventListener(“nmtvplayer_toggleFullscreen”, toggleFullScreen, { passive: true });
window.addEventListener(“nmtvplayer_listen”, listenBtn, { passive: true });
}

function onscroll(event) {
// this Helper will tell whether a HTMLElement becomes visible
var parentContainerState = akamai.amp.Utils.getViewability(“#p_lt_zoneContent_pageplaceholder_p_lt_zoneRight_NewsmaxTVLive_NMTVPlayerContainer”);

// once player placeholder container becomes visible we create the player
if (parentContainerState === “full”)
createVideoPlayer();
}

window.addEventListener(“scroll”, onscroll, { passive: true });


function readyHandler(event) {
amp = event.player // exposes player instance to DOM
}

function toggleFullScreen() {
return jQuery(“#amp”)[0].amp.enterFullScreen();
}

function toggleMute() {
const player = jQuery(“#amp”)[0].amp;
return player.muted ? player.unmute() : player.mute()
}
function listenBtn() {
if (jQuery(“#amp”)[0].amp.muted) {
document.getElementById(“listen-btn”).innerHTML = “Mute”;
} else {
document.getElementById(“listen-btn”).innerHTML = “Listen”;
}

toggleMute();
return
}

// Run onscroll incase the video is already showing
onscroll();
};
})();


Sunday, 07 Dec 2025 20:54 PM


South Carolina’s Democratic Party is turning to social media influencers as it campaigns to remain the first state on th . . .


Sunday, 07 Dec 2025 18:03 PM


U.S. lawmakers on Sunday unveiled an annual defense policy bill authorizing a record $901 billion in national security s . . .



Source link

Post Views: 240

PREVIOUS

Hamas Chief Khaled Mashal Defies Trump Gaza Plan, No Disarmament

NEXT

Trump Hosts Kennedy Center Honors, Recognizing Sylvester Stallone, Kiss and Others: “Billions and Billions of People Have Watched Them Over the Years” – The Hollywood Reporter
Related Post
January 1, 2026
ICE Leaders Noem, Miller Dance to ‘Ice Ice Baby’ in Viral NYE Video
December 22, 2025
Denmark Furious After Trump Names Special Envoy To Greenland
April 29, 2025
Malcolm Jenkins Praises Jalen Hurts for Skipping White House Visit
April 17, 2026
Miami Prosecutor Moved from Brennan Conspiracy Investigation
Comments are closed.
John Michael Chambers

DISCLAIMER

The material contained on this website represents the opinion, analysis and/or commentary of JMC, John Michael Chambers and its aggregated content and resources, and is intended to provide the viewer with general information only and nothing should be considered as providing medical, financial, or other advice. JMC, John Michael Chambers strives to deliver wartime updates and opinion commentary that empowers and informs viewers. JMC, John Michael Chambers is dedicated to the rule of law and upholding the U.S. Constitution and does not endorse violence or discrimination in any form. This is NOT an official government or military website. This is not a news network.

© 2026 John Michael Chambers All rights reserved.