Using the Editor

Your Stelae WordPress is a full WordPress installation. Anything you can do in WordPress, you can do here. This page covers the things that are specific to Stelae.

Accessing Your WordPress

From your dashboard, click “Open Editor” on your site card. This opens your private WordPress in a new tab. The URL is a random subdomain (e.g. abc123.stelae.eu) — this is your editing URL, not your public site URL.

Access is protected by a unique editor link that you can find on your site card in the dashboard. Share this link with anyone who should be able to edit the site. You can regenerate the link at any time from the dashboard, which immediately invalidates the old one.

Themes

You can install and use any WordPress theme. All visual output — HTML, CSS, JavaScript, fonts, images — is captured during export. The theme’s PHP code runs only during editing and export; it’s never exposed to visitors.

A few tips for choosing themes that work well with static export:

Plugins

You can install any WordPress plugin, but only plugins whose output is baked into the HTML will have visible effects on the static site. See the compatibility guide for a detailed breakdown.

The short version:

Stelae mu-plugin

Stelae installs a must-use plugin (mu-plugin) in your WordPress that handles the static export trigger and pretty permalink setup. Do not remove or modify files in wp-content/mu-plugins/ — they’re mounted read-only.

Page Builders

Page builders generate their output as HTML and CSS, which is exactly what the export captures. Elementor, Beaver Builder, Bricks, GenerateBlocks, WPBakery, Divi — all produce static output that exports cleanly.

One caveat: some page builders (notably WPBakery/Visual Composer) load certain content via AJAX calls to admin-ajax.php. Content loaded this way won’t appear on the static site. If you notice empty sections after export, this is likely the cause. Check the troubleshooting guide for how to diagnose this.

Media and Uploads

Upload images, videos, PDFs, and other media through the WordPress media library as normal. All media files are included in the static export archive.

Keep in mind that your container has a disk quota. Large media libraries (hundreds of high-resolution images) will consume disk space. Optimize images before uploading where practical — this also makes your static site load faster for visitors.

Permalinks

Stelae automatically sets your permalink structure to /%postname%/ (pretty permalinks) when your site is provisioned. This is important because query-string URLs like ?page_id=2 don’t work on most static hosts.

If you change your permalink structure in WordPress settings, the export will use whatever structure is currently active. Stick with /%postname%/ unless you have a specific reason to change it.

Container Lifecycle

Your WordPress container is a real Docker container with allocated CPU, memory, and disk resources. To keep costs low and density high, containers follow a sleep/wake lifecycle:

Your WordPress files, database, themes, plugins, and uploads are all preserved across sleep/wake cycles. Nothing is lost when the container sleeps.