Skip to content
Epiktetos Theme1.0.0
1.0.01 min read

Performance

Performance characteristics and extension cautions for Epiktetos.

Epiktetos includes several implementation choices that help keep the theme efficient.

Asset loading

  • CSS files are versioned with file modification time when available.
  • epiktetos-header is loaded globally because header controls are global.
  • Category JavaScript is limited to the front page, excluding the saved route.
  • Single-post JavaScript is limited to singular posts.
  • Reader JavaScript is limited to routes where reader features can appear.

Fonts

The readme describes self-hosted fonts. The theme loads its font CSS locally and preloads an Inter font in wp_head.

Caching

The category showcase and reader/editorial features use transients for selected data. Theme code clears relevant caches when posts, terms, or key options change.

Practical recommendations

  • Use optimized featured images.
  • Keep homepage category queries focused.
  • Avoid loading unrelated scripts from child themes or plugins on every page.
  • Test front page, single post, archive, search, and saved route separately.

No cache plugin included

The theme does not replace a page cache, object cache, CDN, or image optimization workflow. Use normal WordPress performance tooling where appropriate.

Related articles