ADVERTISEMENT

A real glimmer of hope to end political dynasties

Published Dec 16, 2025 12:05 am  |  Updated Dec 15, 2025 04:02 pm
FINDING ANSWERS
Many did not see it coming. President Ferdinand Marcos Jr. — heir to one of the most enduring political dynasties in the country — has asked Congress to prioritize four landmark reform bills that, if passed, would curb dynasties, restrain corruption, and shake the foundations of Philippine politics.
For a president whose own name is inseparable from dynastic power, the move feels almost paradoxical. Yet he has moved to rebalance political power away from the ruling class and toward citizens through the Anti-Political Dynasty Bill, the Independent People’s Commission Act, reforms to the Party-List System, and the CADENA Act.
The proposed Independent People’s Commission would introduce a powerful new layer of oversight immune to political intimidation. For decades, corruption has thrived not because laws were absent, but because enforcement was weak, selective, or deliberately stalled. Under this framework, ghost projects and questionable fund releases would face immediate and public scrutiny. Subpoenas would follow paper trails. The culture of impunity that has protected wrongdoing would be forced into the open.
Equally consequential is the effort to clean up the party-list system, an institution originally designed to amplify marginalized voices but later captured by political clans and wealthy interests. Reforming it would restore its original purpose. Congressional seats would be occupied by genuine advocates for labor, agriculture, persons with disabilities, senior citizens, and other underrepresented sectors.
The proposed Citizen Access and Disclosure of Expenditures for National Accountability Act or CADENA Act, authored by Sen. Bam Aquino, “will mandate the full disclosure of all government transaction documents through a secure and tamper-proof digital public ledger system, enabling citizens to track how public funds are used.” Also known as the “Blockchain the Budget Act,” it will empower citizens to monitor government spending “down to the last centavo.”
Among these measures, the one on anti-dynasty is the most momentous, having been awaited for nearly four decades. It could end the practice of families monopolizing elective offices across generations and jurisdictions. Elections may no longer be foregone conclusions determined by genealogy. Farmers, teachers, community organizers, and young leaders who have been locked out by machinery and money would finally have a fighting chance to serve.
If finally enacted into an enabling law to implement Article 2, Section 26 of the Philippine Constitution, which provides that “The State shall guarantee equal access to opportunities for public service, and prohibit political dynasties as may be defined by law,” it can be considered the greatest legacy of President Marcos Jr.
Many Filipinos are exasperated how political families have become more brazen in fielding more candidates. Political families enjoy enormous advantages in winning office because, aside from the traditional “three Gs” — guns, goons, and gold — another powerful factor operates in Philippine elections: bloodline. It provides the strongest grip on political power.
Indeed, the classic description of our political system as an “anarchy of families” still holds true, decades after the phrase was coined by US professor Alfred McCoy who wrote extensively on Philippine political history.
The seeming obsession of many political dynasties to remain in power, combined with the allure of authority after once it has been experienced, has even made it common for members of the same family to challenge one another for the same elective positions.
The issue of political dynasties is merely the tip of a disastrous iceberg that resurfaces in the national consciousness every election season. Beneath it lies the full extent of our electoral dysfunction: patronage politics, corruption, election-related violence, alliances of unprincipled opportunists, vote-buying, fraud, and a host of other ills afflicting our political spectrum.
The late Sen. Miriam Defensor-Santiago once remarked that of the millions of voters who troop to the polls, “the greater majority are not intelligent, they are not educated for voting, and the candidates they choose are not educated for serving.” If indeed most voters are “not educated” to make a right choice, then a law to implement the ban on dynasties could at least narrow the margin of error in choosing leaders.
Although some political dynasties are perceived to be “benevolent, productive, and nurturing a legacy” and have flourished since American colonial times, most carry a negative connotation among enlightened voters who see them as perpetrators of a vicious cycle whereby power begets wealth and vice versa. Ill-gotten political power begets ill-gotten economic wealth, to put it bluntly.
The best-selling book Why Nations Fail, authored by James Robinson and Daren Acemoglu and endorsed by several Nobel Laureates in economics argues that prosperity requires “inclusive pluralistic political institutions” in which political power is scattered “broadly in society and subject to constraints” on the exercise of such power. In contrast, “extractive political institutions” are doomed to fail because they “concentrate power in the hands of a narrow elite and place few constraints on the exercise of this power.”
Thus, making a fundamental change in our country’s political landscape, through the enactment of the enabling law to curb dynasties and bring about prosperity, could become the greatest legacy of President Marcos Jr. ([email protected])
.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); 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() { console.log('scroll event'); 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((data) => { console.log(data); console.log(this); loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); }); // Mutation Observer for Newly Loaded Articles const observer = new MutationObserver(() => { console.log("length: ", articles.length); const articles = document.querySelectorAll(".articles-observe"); if (articles.length > 0) { observeArticles(articles); } }); observer.observe(document.body, { childList: true, subtree: true }); let oberservationCount = 0; // Intersection Observer for Updating URL function observeArticles(articles) { const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl && newUrl !== window.location.pathname) { history.pushState(null, null, newUrl); // Extract metadata const section = entry.target.querySelector('.section-info a:first-of-type')?.textContent?.trim() || ''; const author = entry.target.querySelector('.author-section a')?.textContent?.trim() || ''; const title = entry.target.querySelector('h1, h2, h3, .article-title')?.textContent?.trim() || document.title; // 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') { pSUPERFLY.virtualPage(cleanUrl, { title: title, sections: section, authors: author }); } // Optional: Update document title if (title && title !== document.title) { document.title = title; } console.log('Chartbeat virtual page tracked:', { url: cleanUrl, section: section, author: author, title: title }); } } }); }, { threshold: 0.1 } ); articles.forEach(article => { console.log(oberservationCount++); intersectionObserver.observe(article) }); }
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 }}

Sign up by email to receive news.