I currently have this site running on WordPress Underscores. I am curious if I can re-create the same site using only HTML, CSS, JS (if needed) and PHP (no Wordpress). I don’t know much JS or PHP but I believe it can be a good learning opportunity.
I used Laragon for local development but I read free version will no longer be supported.
Questions:
-
What local dev environment you recommend considering I am on Windows?
-
Would you recommend to use any frameworks to achieve the above?
1 Like
Are… you under the impression that wordpress does something magical that cant be done in HTML/CSS/JS/PHP?
Wordpress uses those 4 to generate its output; so yes, by definition, you can recreate the site, because you’re using the same technologies.
Any *MP stack would work. HTML, CSS, and JS are agnostic to the setup (because they’re client-side) so anything that hosts a website, has a PHP component, and some form of database (because you’re going to try and replicate article-based dynamic content) would work. XAMPP is quick and (very) dirty, but would probably suffice.
You’re moving away from a framework (Wordpress). So why would you want frameworks to replace it?
2 Likes
This sounds very… specific… I get the impression you’re not giving the full picture.
Full picture would be say I would prefer running one local dev environment to cover PHP development and those other 2 scenarios I already mentioned. Alternatively I realize that XAMPP is a good quick option for a simple project like mine.