Ask HN: Managing copy and site content?
Hi, HN. Could use some advice here.
Whenever I work on a webapp, there always seems to be a lot of text in the frontend. Not just small things like button labels, but help text for forms, instructions, and often legal disclaimers, marketing copy, etc.
If this lives in the repository, it requires a code change and/or redeploy to update; and if not, the alternatives seem to be one of: build a shitty CMS, or throw WordPress in front of the damn thing.
All of this makes A/B testing copy optimizations a pain in the ass.
What are your go-to strategies for handling in-app sales copy, help text, and so on? Have I just missed some obvious tool that everybody knows about, except yours truly?
4 comments
[ 2.6 ms ] story [ 18.1 ms ] threadFor longer texts, docs, etc: throw Wordpress (or some other CMS) in front of the damn thing. You can route whatever needs CMS functionality, say /docs, to WP, the rest to your app. If you want tight integration you can just pull the content from the WP database. If you want to get fancy, you can even install something like WP-API (https://github.com/WP-API/WP-API).