ADVERTISEMENT

June Mar Fajardo leads race for another BPC plum

Published Jan 3, 2026 01:08 pm

At A Glance

  • The nine-time Most Valuable Player continues to set the standard in the Season 50 Philippine Cup by emerging as the frontrunner in the Best Player of the Conference race through the quarterfinals.
As expected, June Mar Fajardo is the frontrunner in the Best Player of the Conference race. (PBA Image)
As expected, June Mar Fajardo is the frontrunner in the Best Player of the Conference race. (PBA Image)
Another year has arrived in the PBA, but little has changed when it comes to June Mar Fajardo’s command of the league.
The nine-time Most Valuable Player continues to set the standard in the Season 50 Philippine Cup by emerging as the frontrunner in the Best Player of the Conference race through the quarterfinals.
Numbers once again tell the story of Fajardo’s impact. Based on statistics compiled by PBA chief statistician Fidel Mangonon III, the 6-foot-10 center is pacing the field with an average of 45.4 statistical points, putting him in strong position to claim a record-extending 13th BPC award.
Fajardo’s dominance in the paint remains unmatched, as he leads the rebounding department with an average of 15.3 boards per game. His impact goes well beyond scoring and rebounding, also averaging 5.1 assists while adding 1.1 blocks and 0.7 steals per contest.
Calvin Abueva, enjoying a career resurgence since joining Titan Ultra, currently sits second followed by Converge super rookie Juan Gomez de Liano. FiberXers big man Justine Baltazar and Magnolia Hotshots center Zavier Lucero round out the Top 5.
Among the five leading contenders in the all-Filipino conference, however, Fajardo is the lone player still in the semifinal hunt, giving him a clear edge in the race for the top individual honor.
Still, Abueva remains very much in contention, posting 42.2 SPs behind a league-best 23.6 points per game to go with 11.9 rebounds, 3.6 assists, 1.8 steals, and 1.2 blocks.
Gomez de Liano also turned heads and garnered 37.2 SPs behind an all-around average of 19 points, 7.2 rebounds, 6.7 assists. He was tied with Baltazar, who also finished with 148 points, 14.2 rebounds and 3.2 assists.
Close behind was Lucero, who collected 33.8 SPs on averages of 17.1 points, 10.1 rebounds, 2.0 assists, 1.1 steals and league-best 2.0 blocks.
Abueva’s teammate Joshua Munzon landed sixth with 33.6 SPs followed by CJ Perez of SMB with 32.92 SPs. Calvin Oftana of TNT has 32.91 SPs at eighth, while Converge’s Justin Arana finished ninth with 32.6 SPs.
Completing the Top 10 is CJ Cansino with 31.2 SPs.
In the rookie race, Gomez de Liano is running away with the lead, with Blackwater’s Dalph Panopio emerging as his closest pursuer with 21.9 SPs to show. Terrafirma’s Jm Bravo is third with 19.1 followed by Ginebra’s Sonny Estil (15.9) and Magnolia’s Chris Koon (14.0).
ADVERTISEMENT
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } .hidden { display: none; }
function initializeAllSwipers() { // Get all hidden inputs with cms_article_id document.querySelectorAll('[id^="cms_article_id_"]').forEach(function (input) { const cmsArticleId = input.value; const articleSelector = '#article-' + cmsArticleId + ' .body_images'; const swiperElement = document.querySelector(articleSelector); if (swiperElement && !swiperElement.classList.contains('swiper-initialized')) { new Swiper(articleSelector, { loop: true, pagination: false, navigation: { nextEl: '#article-' + cmsArticleId + ' .swiper-button-next', prevEl: '#article-' + cmsArticleId + ' .swiper-button-prev', }, }); } }); } setTimeout(initializeAllSwipers, 3000); const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); let article = entry.target; // Extract metadata const author = article.querySelector('.author-section').textContent.replace('By', '').trim(); const section = article.querySelector('.section-info ').textContent.replace(' ', ' '); const title = article.querySelector('.article-title h1').textContent; // Parse URL for Chartbeat path format const parsedUrl = new URL(newUrl, window.location.origin); const cleanUrl = parsedUrl.host + parsedUrl.pathname; // Update Chartbeat configuration if (typeof window._sf_async_config !== 'undefined') { window._sf_async_config.path = cleanUrl; window._sf_async_config.sections = section; window._sf_async_config.authors = author; } // Track virtual page view with Chartbeat if (typeof pSUPERFLY !== 'undefined' && typeof pSUPERFLY.virtualPage === 'function') { try { pSUPERFLY.virtualPage({ path: cleanUrl, title: title, sections: section, authors: author }); } catch (error) { console.error('ping error', error); } } // Optional: Update document title if (title && title !== document.title) { document.title = title; } } } }); }, { threshold: 0.1 } ); function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // Offset values const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } const sentinel = document.getElementById("load-more-sentinel"); if (!sentinel) { console.log("Sentinel element not found."); return; } function isSentinelVisible() { const rect = sentinel.getBoundingClientRect(); return ( rect.top < window.innerHeight && rect.bottom >= 0 ); } function onScroll() { if (isLoading) return; if (isSentinelVisible()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { let article = document.querySelector('#widget_1690 > div:nth-last-of-type(2) article'); intersectionObserver.observe(article) loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); });

Sign up by email to receive news.