Re{code} Front HTML Editor
·
Frontend HTML editor for WordPress — edit post_content directly on the page and preview changes instantly without a page reload.
Re{code} Front HTML Editor adds a fixed toolbar to the frontend of your WordPress site (visible only to users who can edit the current post). Click Edit, modify the HTML directly in the editor, then hit Save & Preview — the page updates in place with no reload required.
Features
- Live on-page editing — no page reload, no switching to the backend
- Lightweight plain textarea editor — no external dependencies, works everywhere
- Format toolbar — Bold, Italic, Strikethrough, Highlight, Inline code, H2, H3, Paragraph, Blockquote, UL, OL, Insert link, Insert image
- Keyboard shortcuts — Ctrl+E (open/close), Ctrl+S (save), Escape (cancel), Ctrl+B/I/K
- Custom Snippets — save any HTML block as a toolbar button; use {|} to mark where the cursor lands after inserting
- Element Picker — click any element on the page to discover its CSS selector, navigate ancestor breadcrumbs, and copy it to Settings
- Dark and Light themes configurable in Settings → Front HTML Editor
- Configurable content selector — choose from popular theme defaults or enter any custom CSS selector
- Secure — nonce-verified AJAX,
edit_postcapability check per-post, content sanitized withwp_kses_post - Works with Twenty* themes, Astra, GeneratePress, Kadence, Divi, OceanWP, Flatsome, and most other themes
How It Works
- Visit any post or page on the frontend while logged in as an editor or administrator
- The ✏️ HTML Editor toolbar appears at the top of the page
- Click Edit — the plugin loads the raw
post_contentfrom the database into the editor - Edit the HTML, use the format toolbar or keyboard shortcuts
- Click 💾 Save & Preview — your changes are saved and the page content updates instantly
- Use 🎯 Pick element if the editor can’t find the content area — click any block to get its CSS selector
Custom Snippets
Go to Settings → Front HTML Editor → Custom Snippets to add reusable HTML blocks.
Each snippet gets its own button in the editor toolbar.
Use {|} in the HTML code to control where the cursor appears after the snippet is inserted.
Example:
<div class="see-also-block"><div class="see-also-title">See also:</div><ul><li><a href="{|}"></a></li></ul></div>
Security
- AJAX requests are nonce-verified
- Every action checks
current_user_can('edit_post', $post_id)for the specific post - Saved content passes through
wp_kses_post - The toolbar is never rendered for unauthenticated users or users without edit rights for the current post