Cracking the Core Web Vitals: A Case Study on Hybrid WordPress & Custom HTML Architecture
How rankingi.eu achieves exceptional page speed scores by combining WordPress flexibility with hand-crafted HTML precision
The Performance Paradox of Modern WordPress
Every SEO professional knows the frustration: you need WordPress for its ecosystem, editorial workflow, and plugin capabilities—but the moment you add a page builder, your Core Web Vitals tank. Elementor, Divi, WPBakery—they all promise drag-and-drop convenience while quietly bloating your DOM with hundreds of nested divs, loading megabytes of unused CSS, and injecting JavaScript that blocks rendering.
The conventional wisdom says you have two choices: accept the performance penalty or abandon WordPress entirely for a custom solution. But there’s a third path—one that preserves WordPress’s strengths while delivering page speed metrics that rival hand-coded static sites.
This case study examines rankingi.eu, a Polish product review portal that achieves outstanding Core Web Vitals scores through a hybrid architecture combining WordPress with the Kadence theme and strategically implemented custom HTML landing pages.
Understanding the Technical Foundation
The WordPress Layer: Kadence Theme
Rankingi.eu runs on WordPress with the Kadence theme—a choice that already puts it ahead of most WordPress installations. Kadence stands out among WordPress themes for several reasons:
Minimal JavaScript Footprint: Unlike themes that load jQuery and multiple script files regardless of what features you use, Kadence loads JavaScript conditionally. If you’re not using a particular block or feature on a page, the associated scripts don’t load.
Native CSS Generation: Kadence generates inline critical CSS and defers non-essential styles, reducing render-blocking resources that plague most WordPress themes.
Block-Based Architecture: Built around WordPress’s native Gutenberg editor rather than a proprietary page builder, Kadence avoids the abstraction layer that causes performance issues in traditional page builders.
The Custom HTML Layer: Where the Magic Happens
Here’s where rankingi.eu’s architecture diverges from typical WordPress builds. Instead of using page builders for landing pages and key content pieces, the site employs custom HTML templates inserted directly into WordPress pages.
This approach delivers several critical advantages:
DOM Simplicity: A typical Elementor section might generate 15-20 nested div elements to create a simple two-column layout. Custom HTML achieves the same visual result with 3-4 elements. Fewer DOM nodes mean faster parsing, rendering, and interaction.
Zero Unused CSS: Page builders load their entire CSS framework—often 200-400KB—regardless of which components you actually use. Custom HTML pages load only the styles they need, typically 15-30KB of highly optimized CSS.
Eliminated JavaScript Dependencies: Page builders inject JavaScript for animations, responsive behaviors, and dynamic elements. Most of this can be achieved with modern CSS alone. Custom HTML pages on rankingi.eu use minimal JavaScript, eliminating main thread blocking that destroys INP scores.

Core Web Vitals Deep Dive
Largest Contentful Paint (LCP): Under 1.5 Seconds
LCP measures how quickly the main content element loads—typically the hero image or primary heading. Google’s threshold for “good” is under 2.5 seconds.
Rankingi.eu achieves LCP scores consistently under 1.5 seconds through:
Preload Critical Assets: Hero images and above-the-fold resources use <link rel="preload"> declarations, eliminating discovery delays.
Optimized Image Delivery: Images are served in WebP format with appropriate sizing for different viewports. No 2000px images loading on mobile devices.
Minimal Render-Blocking Resources: With custom HTML, there’s no page builder CSS or JavaScript blocking the critical rendering path. The browser can paint content immediately.
Server Response Time: Combined with quality hosting and proper caching, Time to First Byte (TTFB) stays under 200ms—giving LCP a head start.
Interaction to Next Paint (INP): Sub-100ms Response
INP replaced First Input Delay in March 2024 as a Core Web Vital, measuring the latency between user interactions (clicks, taps, key presses) and the visual response. The “good” threshold is under 200ms.
This metric destroys page builder sites. Every Elementor widget, every Divi module, every WPBakery element adds JavaScript event listeners and DOM manipulation code that fights for main thread time.
Custom HTML pages on rankingi.eu achieve INP scores under 100ms because:
No Framework Overhead: No React-like state management, no virtual DOM reconciliation, no expensive component lifecycle methods.
Event Delegation: Instead of attaching listeners to hundreds of elements, the architecture uses efficient event delegation patterns.
CSS-Driven Interactions: Hover effects, transitions, and simple animations use pure CSS rather than JavaScript-triggered class toggles.
Deferred Non-Critical JavaScript: Any JavaScript that isn’t essential for initial interactivity loads after the page becomes responsive.
Cumulative Layout Shift (CLS): Zero Unexpected Movement
CLS measures visual stability—how much page content unexpectedly shifts during loading. A “good” score is under 0.1.
Custom HTML pages eliminate the primary causes of layout shift:
Explicit Dimensions: All images, embeds, and dynamic content areas have width and height attributes or CSS aspect-ratio declarations, reserving space before content loads.
No FOUC (Flash of Unstyled Content): Critical CSS loads inline or with high priority, preventing style recalculations that cause layout shifts.
Font Loading Strategy: Web fonts use font-display: swap with carefully matched fallback fonts, minimizing text reflow.
No Dynamic Content Injection: Unlike page builders that often inject elements after initial render, custom HTML pages have a stable DOM from first paint.

The SEO Multiplier Effect
Direct Ranking Benefits
Google has confirmed that Core Web Vitals are a ranking signal. While content relevance remains paramount, page experience acts as a tie-breaker between competing pages. In competitive niches—exactly where rankingi.eu operates—these marginal gains compound.
Consider two product review pages targeting the same keyword:
- Page A: Comprehensive content, 3.2s LCP, 280ms INP, 0.15 CLS
- Page B: Equally comprehensive content, 1.4s LCP, 85ms INP, 0.02 CLS
Page B wins the tie-breaker. Multiply this across hundreds of pages, and the cumulative ranking advantage becomes substantial.
The AI Overview Connection
Here’s where performance optimization becomes even more strategic: Google’s AI Overviews and Search Generative Experience (SGE) are fundamentally changing how search results are presented.
Early research suggests that AI Overview sources tend to:
- Come from pages that load quickly: Google’s systems need to crawl, render, and extract content efficiently. Slow pages create friction in this pipeline.
- Have clean, parseable HTML structures: The semantic clarity of custom HTML—with proper heading hierarchies, clear content sections, and minimal wrapper divs—makes content easier for AI systems to understand and extract.
- Demonstrate expertise and structure: Well-organized content in performant pages signals quality to both traditional ranking systems and AI evaluation models.
Rankingi.eu’s hybrid architecture positions it well for AI Overview inclusion: fast-loading pages with semantically clean HTML structures make content extraction straightforward for Google’s systems.
Crawl Budget Efficiency
For larger sites, page speed affects crawl budget utilization. When Googlebot can render pages quickly, it crawls more pages per session. Custom HTML pages that render in milliseconds rather than seconds mean more efficient crawl budget allocation—critical for sites with thousands of product reviews and landing pages.
Implementation Strategy: The Hybrid Approach
The rankingi.eu architecture doesn’t require choosing between WordPress convenience and hand-coded performance. Here’s how the hybrid model works:
WordPress for What It Does Best
- Content Management: Editors use WordPress’s familiar interface for creating and updating content
- Taxonomy and Navigation: Categories, tags, and site-wide navigation leverage WordPress’s built-in systems
- Plugin Ecosystem: Essential plugins for SEO, security, and functionality run through WordPress
- Theme Framework: Kadence provides the structural foundation and ensures consistency
Custom HTML for Performance-Critical Pages
- Landing Pages: High-value entry points use custom HTML templates for maximum performance
- Product Rankings: Core revenue-generating pages bypass page builders entirely
- Key Category Pages: Important category and pillar pages get the custom treatment
The Technical Bridge
Custom HTML integrates into WordPress through several methods:
Custom Page Templates: PHP templates that output specific HTML structures while maintaining WordPress header/footer consistency.
Shortcode Integration: For pages that need some Gutenberg content mixed with custom sections, shortcodes bridge the gap.
ACF Custom Fields: Advanced Custom Fields can provide editorial interfaces for custom HTML pages, giving content teams flexibility without page builder overhead.
Measuring Success: Real-World Results
The proof is in the metrics. Sites employing this hybrid architecture consistently achieve:
- Performance Scores: 90+ on Google PageSpeed Insights (mobile and desktop)
- Core Web Vitals: All three metrics in the “Good” range across 75%+ of page visits
- TTFB: Under 200ms with proper hosting and caching
- Total Blocking Time: Under 50ms on custom HTML pages
Beyond the numbers, there are practical benefits:
Reduced Hosting Costs: Lighter pages mean less server processing, lower bandwidth, and the ability to handle traffic spikes without expensive scaling.
Faster Development: Once the custom HTML patterns are established, creating new landing pages becomes faster than wrestling with page builder quirks.
Future-Proof Architecture: As Core Web Vitals thresholds tighten and AI systems become more sophisticated, clean HTML provides a stable foundation for whatever comes next.
The Practical Takeaway
The rankingi.eu case study demonstrates that you don’t need to abandon WordPress to achieve exceptional page speed. The key insights:
- Theme Selection Matters: Kadence (or similar performance-focused themes) provides a solid foundation. The days of choosing themes purely for aesthetics are over.
- Page Builders Are Optional: For your most important pages, custom HTML delivers performance that page builders simply cannot match. Learn the basics of HTML/CSS or work with developers who can.
- Hybrid Is Pragmatic: Use WordPress where it adds value (content management, taxonomy, plugins) and bypass it where it creates friction (page-level performance).
- Measure Relentlessly: Core Web Vitals data in Google Search Console tells you exactly where performance issues exist. Fix the pages that matter most first.
- Think Beyond Rankings: Fast pages convert better, reduce bounce rates, and create better user experiences. Core Web Vitals optimization pays dividends beyond SEO.
The hybrid WordPress/custom HTML architecture isn’t just a technical curiosity—it’s a competitive advantage. While competitors fight with page builder bloat and chase performance scores they’ll never achieve, sites like rankingi.eu demonstrate that exceptional Core Web Vitals on WordPress aren’t just possible—they’re a strategic choice that compounds over time.
The performance advantages described in this case study reflect architectural principles applied at rankingi.eu. Individual results depend on implementation quality, hosting infrastructure, and content characteristics. Always measure your own Core Web Vitals data to validate optimization efforts.
