this post was submitted on 31 May 2025
59 points (88.3% liked)

Ask Lemmy

31983 readers
1274 users here now

A Fediverse community for open-ended, thought provoking questions


Rules: (interactive)


1) Be nice and; have funDoxxing, trolling, sealioning, racism, and toxicity are not welcomed in AskLemmy. Remember what your mother said: if you can't say something nice, don't say anything at all. In addition, the site-wide Lemmy.world terms of service also apply here. Please familiarize yourself with them


2) All posts must end with a '?'This is sort of like Jeopardy. Please phrase all post titles in the form of a proper question ending with ?


3) No spamPlease do not flood the community with nonsense. Actual suspected spammers will be banned on site. No astroturfing.


4) NSFW is okay, within reasonJust remember to tag posts with either a content warning or a [NSFW] tag. Overtly sexual posts are not allowed, please direct them to either [email protected] or [email protected]. NSFW comments should be restricted to posts tagged [NSFW].


5) This is not a support community.
It is not a place for 'how do I?', type questions. If you have any questions regarding the site itself or would like to report a community, please direct them to Lemmy.world Support or email [email protected]. For other questions check our partnered communities list, or use the search function.


6) No US Politics.
Please don't post about current US Politics. If you need to do this, try [email protected] or [email protected]


Reminder: The terms of service apply here too.

Partnered Communities:

Tech Support

No Stupid Questions

You Should Know

Reddit

Jokes

Ask Ouija


Logo design credit goes to: tubbadu


founded 2 years ago
MODERATORS
 

Is there not federated WordPress?

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 3 points 3 days ago (1 children)

Wordpress as a framework is kinda federated, you can host your own server if you want to.

You can look into wysiwyg website editors, self hosting a website with aws and s3 is wicked cheap, and other providers like netlify are also inexpensive to a lesser degree.

[–] [email protected] 1 points 3 days ago (1 children)

I will look into that. Thanks. And WordPress doesn't let you tinker with the base code like they used to.

[–] [email protected] 4 points 2 days ago (1 children)

They do if you host it yourself. I've done a fair bit of WordPress development. You can add your own plugins that override base functionality, and if that isn't enough you can just modify the base code directly (but you'll have to reconcile it with updates if you want to update).

[–] [email protected] 1 points 2 days ago

If you want to make changes without dealing with update hassles:

  • Make a child theme to your current theme which inherits from it.
  • Add a functions.php to your child theme, which only includes specific overrides for functionality you want to override.
  • Presto change-o you are immune to stuff getting ruined with updates. (Aside from API changes and things but those are relatively rare in my experience, for the most part it all just works.)