Converting Html, css, js, phyton(backend) into Wordpress

jaypatel6

Junior Member
Joined
Aug 15, 2020
Messages
144
Reaction score
76
Hey, What are the best ways to convert html, css, js and python code into Wordpress system. My client wants to get it done. He gave me github file it has everything into it. So, what are the ways i can make it into a wordpress site so my client can be comfortable with minor changes they want to do?

Thanks,
Jay
 
Mainly just move the content and images over to wordpress. Try to find a theme they like and adjust the layout to mimic the original site the best you can.
 
Hey, What are the best ways to convert html, css, js and python code into Wordpress system. My client wants to get it done. He gave me github file it has everything into it. So, what are the ways i can make it into a wordpress site so my client can be comfortable with minor changes they want to do?

Thanks,
Jay
What's the python code for?
If it's for logic only simply convert it into php.
Make json file create your custom theme.

This is wordpress theme structure.

├─┬ assets
│ ├── css
│ ├── images
│ ├── js
│ └── vendor
├── inc
├── languages
├─┬ template-parts
│ ├── footer
│ ├── header
│ ├── navigation
│ ├── page
│ └── post
└── page-templates
 
Turn the HTML/CSS/JS into a WordPress theme and convert the Python functions into a plugin.

The better option is to simply ask your client to hire someone who is good at this.
 
Back
Top